33 lines
824 B
PHP
33 lines
824 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\V3\SafetyAndPrivacy;
|
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class SecondStepStoreRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, ValidationRule|array|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'need_judiciary' => 'required|boolean',
|
|
'operator_description' => 'required_if:need_judiciary,0|string',
|
|
'judiciary_document' => 'required_if:need_judiciary,1|array',
|
|
'judiciary_document.*' => 'file',
|
|
];
|
|
}
|
|
}
|