Answers for "laravel validation required_with"

PHP
2

field not required validation laravel

$this->validate($request, [
	"field_nullable" => "nullable"
]
Posted by: Guest on May-11-2021
0

laravel required_with

$request->validate([
            'daily_movement_id'=>'required_with:daily_movement',
            'daily_movement'=>'required_with:daily_movement_id',
        ]);
Posted by: Guest on July-13-2021
0

validation.required laravel

9

If it has worked for you before then you should check if you have messages defined in the app\lang\en\validation.php or by chance you have changed the locale of the app and have not defined the messages for it. There are many possibilities.
Posted by: Guest on March-24-2021

Browse Popular Code Answers by Language