'required|integer', 'full_name' => 'required|string|max:150', 'email' => 'required|email', 'contact_no' => 'required|string', 'subject' => 'required|string|max:500', 'feedback' => 'required|string', ]; } /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } }