관리-도구
편집 파일: ProductPricingRequest.php
<?php namespace Modules\AI\app\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class ProductPricingRequest extends FormRequest { /** * Get the validation rules that apply to the request. */ public function rules(): array { return [ 'name' => 'required|string|max:255', 'description' => 'nullable|string', ]; } public function messages(): array{ return ['name.required' => translate('product_name_and_description_are_required_to_generate_pricing')]; } /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } }