Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proengsoft/laravel-jsvalidation
Laravel Javascript Validation
https://github.com/proengsoft/laravel-jsvalidation
Last synced: about 15 hours ago
JSON representation
Laravel Javascript Validation
- Host: GitHub
- URL: https://github.com/proengsoft/laravel-jsvalidation
- Owner: proengsoft
- License: mit
- Created: 2015-03-15T23:38:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-11T04:40:06.000Z (2 months ago)
- Last Synced: 2024-11-20T15:45:40.926Z (22 days ago)
- Language: PHP
- Homepage:
- Size: 3.95 MB
- Stars: 1,134
- Watchers: 32
- Forks: 175
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-laravel-framework - Javascript Validation - Use validation rules, messages, FormRequest and validators to validate forms in client side without need to write any Javascript code (Popular Packages)
- awesome-laravel - Javascript Validation - Utilice reglas de validación, mensajes, FormRequest y validadores para validar formularios en el lado del cliente (Paquetes utiles)
- laravel-awesome - Javascript Validation - Use validation rules, messages, FormRequest and validators to validate forms in client side without need to write any Javascript code (Popular Packages)
- awesome-laravel - Javascript Validation - Use validation rules, messages, FormRequest and validators to validate forms in client-side (Popular Packages)
README
## Laravel Javascript Validation
![Latest Version](https://img.shields.io/github/release/proengsoft/laravel-jsvalidation.svg?style=flat-square)
![tests](https://github.com/proengsoft/laravel-jsvalidation/actions/workflows/php-tests.yml/badge.svg)
![Code Coverage](https://app.codecov.io/gh/proengsoft/laravel-jsvalidation)
![Total Downloads](https://img.shields.io/packagist/dt/proengsoft/laravel-jsvalidation.svg?style=flat-square)
![License](https://img.shields.io/badge/license-MIT-brightgreen?style=flat-square)**Laravel Javascript Validation** package allows to reuse your Laravel [Validation Rules][], [Messages][], [FormRequest][] and [Validators][] to validate forms automatically in client side without need to write any Javascript code or use HTML Builder Class.
You can validate forms automatically referencing it to your defined validations. The messages are loaded from your validations and translated according your Localization preferences.
#### Supported versions
Laravel 9.x - 11.x
#### Feature overview
- Automatic creation of Javascript validation based on your [Validation Rules][] or [FormRequest][], no Javascript coding required.
- Supports other validation packages.
- AJAX validation for [ActiveURL][], [Unique][] and [Exists][] Rules, [Custom Validation Rules][] and other validation packages
- Unobtrusive integration, you can use without Laravel Form Builder
- The package uses [Jquery Validation Plugin][] bundled in provided script.
- Uses Laravel Localization to translate messages.#### Supported Rules
**Almost all [Validation Rules][] provided by Laravel and other packages are supported**.
Almost are validated in client-side using Javascript, but in some cases, the validation should to be done in server-side via AJAX:
- [ActiveURL][]
- [Unique][]
- [Exists][]
- [Custom Validation Rules][]
- Validations provided by other packages##### Unsupported Rules
Some Laravel validations are not implemented yet.
- [Present][]
- [DateFormat][] rule don't support timezone format#### Getting started
The easiest way to create Javascript validations is using [Laravel Form Request Validation][].
##### Installation
Follow the [Installation Guide][] to install the package. **The default config should work out-of-box**
##### Validating Form Request
Call [JsValidator Facade][] in your view to validate any [FormRequest](https://laravel.com/docs/master/validation)
```html
{!! JsValidator::formRequest('App\Http\Requests\MyFormRequest') !!}
```Take a look to [Basic Usage](https://github.com/proengsoft/laravel-jsvalidation/wiki/Basic-Usage) or [Examples](https://github.com/proengsoft/laravel-jsvalidation/wiki/Validating-Examples) to get more information.
#### Documentation
**To get more info refer to [Project Wiki](https://github.com/proengsoft/laravel-jsvalidation/wiki/Home)**
#### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
#### Contributing
Please see [CONTRIBUTING][] for details.
#### Credits
[Laravel Javascript Validation contributors list](../../contributors)
#### License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
[ActiveURL]: https://laravel.com/docs/5.4/validation#rule-active-url
[CONTRIBUTING]: https://github.com/proengsoft/laravel-jsvalidation/wiki/Contributing
[Custom Validations]: https://laravel.com/docs/5.4/validation#custom-validation-rules
[Custom Validation Rules]: https://laravel.com/docs/5.4/validation#custom-validation-rules
[DateFormat]: https://laravel.com/docs/5.4/validation#rule-date-format
[Exists]: https://laravel.com/docs/5.4/validation#rule-exists
[FormRequest]: https://laravel.com/docs/5.4/validation#form-request-validation
[Installation Guide]: https://github.com/proengsoft/laravel-jsvalidation/wiki/Installation
[JsValidator Facade]: https://github.com/proengsoft/laravel-jsvalidation/wiki/Facade
[JQueryValidation]: https://jqueryvalidation.org/
[JQuery Validation Plugin]: https://jqueryvalidation.org/
[Laravel Form Request Validation]: http://laravel.com/docs/5.4/validation#form-request-validation
[Laravel Localization]: https://laravel.com/docs/5.4/localization
[Messages]: https://laravel.com/docs/5.4/validation#error-messages-and-views
[Present]: https://laravel.com/docs/5.4/validation#rule-present
[Unique]: https://laravel.com/docs/5.4/validation#rule-unique
[Validation]: https://laravel.com/docs/5.4/validation
[Validation Rules]: https://laravel.com/docs/5.4/validation#available-validation-rules
[Validators]: https://laravel.com/docs/5.4/validation#form-request-validation