This tag references different approaches to validate your application's incoming data using Laravel.
in laravel validation (registering) i want to compare one of the fields with a php variable (it should be equal …
laravel validation laravel-5 laravel-5.4 laravel-validationI'm not getting the response I expect. This is the controller code for a Location web-service request: <?php namespace …
laravel laravel-5 laravel-validation laravel-5.5For the Update Profile Page I use the route as Route::get('editdriver/{data}', 'DriverController@EditDriver'); And in the …
php validation laravel laravel-4 laravel-validationI am uploading an image file to the input file ImageUpload.I need to check if file has been uploaded …
laravel laravel-validationtestAjax function inside PostsController class: public function testAjax(Request $request) { $name = $request->input('name'); $validator = Validator::make($request->…
php ajax laravel laravel-validation laravel-5.6I'm using FormRequest to validate from which is sent in an API call from my smartphone app. So, I want …
php laravel laravel-5 laravel-validationI have gone through the validations in Laravel. I have taken so many validation rules from Laravel Validations Rules I …
php laravel laravel-validationLaravel has a 'unique' rule with an 'except' clause. From the validation documentation, it takes this form: unique:table,column,…
php laravel validation laravel-validationWhen I use the Validation feature in Laravel, how can I add a pre-defined strings that are allowed in an …
laravel laravel-5 laravel-validationI have done all the things for the validation for the variable in laravel but for emails I got one …
php validation email laravel laravel-validation