Files
exchange-2.0/routes/api.php
T
2020-11-22 10:20:38 +08:00

29 lines
783 B
PHP

<?php
use Illuminate\Http\Request;
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::group(['middleware' => 'api', 'prefix' => 'v1', 'as' => 'api.'], function () {
require __DIR__ . '/account.php';
require __DIR__ . '/document.php';
require __DIR__ . '/segment.php';
Route::group(['middleware' => 'valid.token'], function () {
require __DIR__ . '/crud.php';
});
});