Files
vuefilemanager/src/App/Users/Requests/UpdateUserProfileSettingsRequest.php
2022-05-04 07:20:15 +02:00

32 lines
619 B
PHP

<?php
namespace App\Users\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateUserProfileSettingsRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|string',
'value' => 'sometimes|string',
'avatar' => 'sometimes|file',
];
}
}