21 lines
341 B
PHP
21 lines
341 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\V1;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class PublicDetectionRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'image' => ['required','image','max:2048'],
|
|
];
|
|
}
|
|
}
|