laravel-vue-cli-3 icon indicating copy to clipboard operation
laravel-vue-cli-3 copied to clipboard

Update web.php

Open iliyaZelenko opened this issue 7 years ago • 0 comments

This solves the problem with API 404 response.

If you put the following code in routes/api.php it does not work:

Route::fallback(function() {
    return response()->json(['message' => 'Not Found!'], 404);
});

If no route is found, then there is the possibility to return an 404 error.

https://stackoverflow.com/q/52382680/5286034

iliyaZelenko avatar Sep 18 '18 09:09 iliyaZelenko