Files
click-erp/app/Http/Requests/AddFilesRequest.php
2023-05-08 10:13:03 +00:00

33 lines
628 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class AddFilesRequest 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",
"description" => "sometimes",
"photo" => "required|max:2000|mimes:png,jpg,jpeg,bmp,pdf,docx",
];
}
}