22 lines
430 B
PHP
22 lines
430 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Requests\User;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
|
||
|
|
class UserUpdateRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function rules(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'name' => 'sometimes|string|max:100',
|
||
|
|
'phone' => 'nullable|string|max:20',
|
||
|
|
'email' => 'sometimes|email|max:100',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|