'The uploaded file must be a PDF, An MS Word Document or An Image.', 'document_one.max' => 'The uploaded file may not be larger than 20MB.', 'document_two.mimes' => 'The uploaded file must be a PDF, An MS Word Document or An Image.', 'document_two.max' => 'The uploaded file may not be larger than 20MB.', 'sliding_rate_file.max' => 'The Sliding Rate file may not be larger than 10MB.', ]; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => 'required', 'country' => 'required', 'account_manager_id' => 'required', 'services' => 'required', 'contact_person' => 'required', 'contact_person_email' => 'required', 'contact_person_phone' => 'required', 'contract_auto_renew' => 'required', 'contract_validity' => 'required', 'document_one' => 'max:20480|mimes:png,jpg,jpeg,bmp,pdf,doc,docx,xlx,xlsx', 'document_two' => 'max:20480|mimes:png,jpg,jpeg,bmp,pdf,doc,docx,xlx,xlsx', 'sliding_rate_file' => 'max:10240|mimes:png,jpg,jpeg,bmp,pdf,doc,docx,xlx,xlsx', // 'document_one_name' => 'required_with:document_one.*', // 'document_two_name' => 'required_with:document_two.*', ]; } }