1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 02:44:42 +00:00
Files
metr/backend/app/Http/Requests/UploadImageRequest.php
2022-06-01 00:23:05 +07:00

19 lines
353 B
PHP

<?php
namespace App\Http\Requests;
class UploadImageRequest extends BaseRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'image' => ['required', 'image', 'mimes:jpg,png,jpeg', 'max:15000'],
];
}
}