This tag references different approaches to validate your application's incoming data using Laravel.
I currently have a model that has a text field and a slug field. I validate that the slug is …
php laravel laravel-5 laravel-validation laravel-requestI wanted to create this extended validation. Validator::extend('my_custom_validation_rule', function ($attribute, $value, $parameters) { // I guess I …
php laravel laravel-validationIn the documentation, I saw you could set a connection for the unique rule which is great. However, the exists …
laravel laravel-5.1 laravel-validationI am trying to submit a form and validate the content. In one of the requests I need to make …
php laravel laravel-validationMy form has the same input field multiple times. My form field is as follows: <input type='text' name=…
php laravel laravel-5 laravel-validation laravel-5.7I have some validation that requires a url or a route to be there but not both. $this->validate($…
php laravel laravel-5 laravel-5.1 laravel-validationI am trying to validate latitude/longitude in Laravel 5.4 project with custom regex rule (based on this answer: https://stackoverflow.…
php regex laravel latitude-longitude laravel-validationI've completed a tutorial to upload image files. How can I validate file uploads in the view when a user …
laravel laravel-validation laravel-filesystemneed help updating a unique rule in my validation rules. I have a abstract validator that will validate a rules …
php laravel laravel-4 eloquent laravel-validationI have a form in route('users.create'). I send form data to this function in its contoller: public function …
laravel laravel-validation laravel-5.5