'You need to specify the product name' ); } public function responsenn(array $errors){ // Always return JSON. return response()->json($errors, 422); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'msisdn' => 'required|regex:/^(0)[89]\d{8}$/', 'amount' => 'required', 'product_name' => 'required', 'refID' => 'required', 'country' => 'required' ]; } }