Package Data | |
---|---|
Maintainer Username: | corp@solbeg.com |
Maintainer Contact: | alexey.sejnov@solbeg.com (Alexey Sejnov) |
Package Create Date: | 2016-10-17 |
Package Last Update: | 2019-03-12 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-11 15:13:27 |
Package Statistics | |
---|---|
Total Downloads: | 248 |
Monthly Downloads: | 2 |
Daily Downloads: | 1 |
Total Stars: | 6 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 1 |
PACKAGE IS NOT MAINTAINED, USE AT YOUR OWN RISK
It is plugin for Laravel applications that use Vee-Validate plugin for front validation.
It automatically converts laravel's FormRequest rules to Vee rules. It also passes errors messages to Vee validator.
So you may write your rules once in laravel application, so the same will be used in front side too.
Install plugin using composer:
$ php composer.phar require solbeg/laravel-vue-validation
After you have installed this vendor, add the following lines.
In your Laravel config file config/app.php
in the providers
array
add the service provider for this package.
// ...
Solbeg\VueValidation\ServiceProvider::class,
// ...
And add the facade of this package to the aliases
array.
// ...
'F' => Solbeg\VueValidation\Facades\Form::class,
'HTML' => Solbeg\VueValidation\Facades\Html::class,
// ...
Publish assets for this vendor:
$ php artisan vendor:publish --force --provider="Solbeg\VueValidation\ServiceProvider" --tag=public
Connect JS file for this plugin in your layout. Note! This JS file must be included after Vue & Vee JS files:
<script src="{{ asset('vendor/solbeg/laravel-vue-validation/init-vue-validation.js') }}"></script>
Add the following JS code in your layout, so the Vue will use this plugin for validating:
Vue.use(SolbegLaravelVueValidation);
In your blade template:
{{ F::open([
// ...
'request' => \App\Http\Requests\YourFormRequestClass::class,
]) }}
...
{!! F::controlGroup('phone',
F::label('phone', 'Phone number'),
F::text('phone', old('phone', $user->phone))
) !!}
...
{{ F::close([
/**
* Additional params for Vue object.
* They will be passed in `new Vue({here})` constructor
*/
'data' => [
'prop1' => 'val1',
],
]) }}
{{-- OR without additional Vue options --}}
{{ F::close() }}
{{ F::close(true) }}
{{-- OR `false` if you initialize Vue object by himself --}}
{{ F::close(false) }}