Files
vuefilemanager/src/Domain/UploadRequest/Requests/StoreUploadRequest.php
2022-05-04 09:03:18 +02:00

33 lines
672 B
PHP

<?php
namespace Domain\UploadRequest\Requests;
use Illuminate\Foundation\Http\FormRequest;
class StoreUploadRequest 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 [
'email' => 'sometimes|email',
'notes' => 'sometimes|string',
'folder_id' => 'sometimes|uuid',
'name' => 'sometimes|string',
];
}
}