관리-도구
편집 파일: SupportTicketRequest.php
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; /** * @property int $id * @property string $url * @property string $image * @property int $status */ class SupportTicketRequest extends FormRequest { protected $stopOnFirstFailure = true; public function authorize(): bool { return true; } public function rules(): array { return [ 'media.*' => 'image|mimes:jpeg,png,jpg,gif,webp|max:6000' ]; } public function messages(): array { return [ 'media.*' => translate('The_file_must_be_an_image'), ]; } }