Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/app/Http/Requests/User/StoreCartRequest.php
Назад
<?php namespace App\Http\Requests\User; use App\Rules\AttributeOptionBelongsToAttribute; use App\Rules\ValidateProductPrice; use Illuminate\Foundation\Http\FormRequest; class StoreCartRequest extends FormRequest { public function rules() { return [ 'product_id' => [ 'required', 'integer', 'exists:products,id', ], 'price_id' => [ 'required', 'integer', 'exists:product_prices,id', new ValidateProductPrice, ], 'quantity' => [ 'required', 'integer', 'min:1', ], 'customization' => [ 'nullable', 'json', ], 'attachment' => [ 'nullable', 'mimes:pdf', ], ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка