%PDF- %PDF-
Direktori : /home/silvzytp/ccd-ind-code/app/Http/Requests/ |
Current File : /home/silvzytp/ccd-ind-code/app/Http/Requests/SupportRequest.php |
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Contracts\Validation\Validator; use Illuminate\Http\Exceptions\HttpResponseException; class SupportRequest extends FormRequest { protected function failedValidation(Validator $validator) { throw new HttpResponseException( response()->json([ 'status'=> false, 'errors'=> $validator->errors() ],200) ); } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules() { return [ 'subject'=>'required|string|max:180', 'message'=>'required|string|min:15' ]; } }