Warehouse/Routes/api.php

18 lines
532 B
PHP
Raw Normal View History

2023-06-10 14:58:01 +00:00
<?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('/warehouse', function (Request $request) {
return $request->user();
});