Answers for "required_if laravel validationm"

PHP
0

laravel required if

"sale_price" => "required_if:list_type,==,selling"
Posted by: Guest on March-24-2021
0

required_if laravel

public function rules()
 {
    return [
      'reclamo_procede'  => 'max:1',             
      'solucion_minutos' => 'required_if:reclamo_procede,==,si', 
    ];
 }
Posted by: Guest on March-26-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