19 lines
457 B
PHP
19 lines
457 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Parents;
|
|
|
|
use App\Http\Requests\ApiFormRequest;
|
|
|
|
class ParentEmergencyContactRequest extends ApiFormRequest
|
|
{
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['required', 'string', 'max:150'],
|
|
'cellphone' => ['required', 'string', 'max:30'],
|
|
'email' => ['nullable', 'email', 'max:150'],
|
|
'relation' => ['nullable', 'string', 'max:80'],
|
|
];
|
|
}
|
|
}
|