관리-도구
편집 파일: AdminLoginRequest.php
<?php namespace Modules\LMS\Http\Requests; use Illuminate\Contracts\Validation\Validator; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Exceptions\HttpResponseException; class AdminLoginRequest extends FormRequest { /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules(): array { return [ // 'email' => 'required', 'password' => 'required', ]; } /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } public function failedValidation(Validator $validator) { throw new HttpResponseException( response()->json( [ 'status' => false, 'errors' => $validator->errors(), ] ) ); } }