Clearing your router of comments

This commit is contained in:
2022-05-19 13:22:01 +02:00
parent ecbb66b843
commit 4b5e3b81bc
3 changed files with 5 additions and 37 deletions

View File

@@ -4,21 +4,6 @@ declare(strict_types=1);
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
// Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
// return $request->user();
// });
Route::get('ping', function () {
return ['message' => 'pong'];
});