6
0
Fork 0
release
李静 2022-01-06 16:03:19 +08:00
parent f0b4f9910b
commit cf1eab7749
1 changed files with 3 additions and 2 deletions

View File

@ -55,8 +55,9 @@ class RouteServiceProvider extends ServiceProvider
Route::fallback(function () { Route::fallback(function () {
return response()->json([ return response()->json([
'data' => 'ok', 'errcode' => 404,
]); 'message' => 'Not Found',
], 404);
}); });
}); });
}); });