check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => 'required|max:60' ]; } public function messages() { return [ 'name.required' => 'Nama harus diisi.', 'name.max' => 'Nama maksimal 60 karakter.', ]; } }