~xdavidwu/uptime-monitor

ref: 2c6a1cf52a3a33cb473510873739a7f095b2b2d7 uptime-monitor/routes/api.php -rw-r--r-- 528 bytes
2c6a1cf5xdavidwu create-project laravel/laravel 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

use Illuminate\Http\Request;

/*
|--------------------------------------------------------------------------
| 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:api')->get('/user', function (Request $request) {
    return $request->user();
});