diff --git a/routes/api.php b/routes/api.php index 9a9d2519..c86a798a 100644 --- a/routes/api.php +++ b/routes/api.php @@ -7,7 +7,7 @@ Route::group(['namespace' => 'API'], function () { Route::delete('me', 'AuthController@logout'); Route::group(['middleware' => 'jwt.auth'], function () { - Route::get('/', function () { + Route::get('/ping', function () { // Just acting as a ping service. });