18 lines
389 B
PHP
18 lines
389 B
PHP
<?php
|
|
|
|
namespace App\Modules\Client\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateClientRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool { return true; }
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['sometimes', 'required', 'string', 'max:255'],
|
|
'notes' => ['nullable', 'array'],
|
|
];
|
|
}
|
|
}
|