diff --git a/src/Controller.php b/src/Controller.php index 90e5542..3c5ab16 100644 --- a/src/Controller.php +++ b/src/Controller.php @@ -166,6 +166,6 @@ protected function respondWithArray(array $array, array $headers = []) */ protected function respondWithNoContent() { - return response()->make('', 204); + return response()->json('', 204); } }