* @created 2022-07-22 14:51:27 * @modified 2022-07-22 14:51:27 */ namespace Beike\Admin\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class UploadRequest 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 [ 'file' => 'required|image|mimes:jpg,png,jpeg,gif,svg|max:2048', ]; } }