Файловый менеджер - Редактировать - /home/clickysoft/public_html/charliapp-v2.clickysoft.net/app/Http/Requests/ImportCouponRequest.php
Назад
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class ImportCouponRequest 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 [ 'flCoupons' => [ 'required', 'mimes:xlsx', 'max:5120', ], ]; } public function attributes() { return [ "flCoupons" => "Import file" ]; } public function messages() { return [ "flCoupons.mimes" => "Only .xlsx file is allowed.", "flCoupons.max" => "File size can not be greater than 5MB." ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка