yyx990803 / laravel-vue-cli-3

Example project using Vue CLI 3 with Laravel
848 stars 183 forks source link

Update web.php #16

Open iliyaZelenko opened 6 years ago

iliyaZelenko commented 6 years ago

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