1.0.6 • Published 4 years ago

@pmochine/vee-validate-laravel v1.0.6

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

🙌 VeeValidate with Laravel validation errors

Latest Version on NPM Total Downloads on NPM Software License

VeeValidate with Laravel validation

If you are looking for an easy module for showing Laravel validation errors, this package is for you. 😜

*Prerequisites: vue >= 2.0.0 and vee-validate >= 2.1.0

⚠️ Combine this package with a global axios interceptor to get the most of it

Installation in 2 Steps*

1: Install the package 💻 on NPM

npm i @pmochine/vee-validate-laravel

2: Add the package in your main.js

import Vue from 'vue';
import VeeValidate from 'vee-validate';
import VeeValidateLaravel from '@pmochine/vee-validate-laravel';

Vue.use(VeeValidate);
Vue.use(VeeValidateLaravel);

💪 How to use it

Somewhere in Laravel:

$request->validate([
    'name' => 'required|min:3|max:255'
]);

Somewhere in Vue:

<template>
    <div class="form-group" v-bind:class="{'has-error' : errors.has('name')}">
        <label for="name">Name</label>
        <input 
            type="text" 
            name="name"
            class="form-control"
            v-model="name"
            v-validate="'required'" />
        <div v-show="errors.has('name')" class="help-block">{{ errors.first('name') }}</div>
    </div>
</template>

<script>
    export default {
        methods: {
            doValidation() {
                const data = {
                    name: this.name
                };
            
                axios.post('/example', data)
                    .then(res => {})
                    .catch(err => {
                        //adds errors to vee-validate errorBag and returns the errors as object
                        const errors = this.$addLaravelErrors(err.response);

                        if(errors){
                            alert(errors[Object.keys(errors)[0]]); 
                        }
                    });
            }
        }
    }
</script>

Security

If you discover any security related issues, please don't email me. I'm afraid 😱. avidofood@protonmail.com

Credits

Now comes the best part! 😍

Oh come on. You read everything?? If you liked it so far, hit the ⭐️ button to give me a 🤩 face.

1.0.6

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago