관리-도구
편집 파일: MMSQuickSendRequest.php
<?php namespace App\Http\Requests\Campaigns; use Illuminate\Foundation\Http\FormRequest; class MMSQuickSendRequest extends FormRequest { /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return $this->user()->can('mms_quick_send'); } /** * Get the validation rules that apply to the request. */ public function rules(): array { return [ 'recipients' => 'required', 'message' => 'required', 'delimiter' => 'required', 'mms_file' => 'required|mimes:mp4,mov,ogg,qt,jpeg,png,jpg,gif,bmp,webp|max:20000', ]; } }