관리-도구
편집 파일: UpdateAnnouncementRequest.php
<?php namespace App\Http\Requests\Customer; use Illuminate\Foundation\Http\FormRequest; class UpdateAnnouncementRequest extends FormRequest { /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return $this->user()->can('edit announcement'); } /** * Get the validation rules that apply to the request. * * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string> */ public function rules(): array { return [ 'title' => 'required|string', 'description' => 'required|string', 'send_by' => 'required|string', ]; } }