Files
portal/routes/api.php
T
2020-09-14 16:05:34 +08:00

26 lines
890 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';
Route::group(['middleware' => 'valid.token'], function () {
require __DIR__ . '/crud.php';
Route::post('order/create', 'Orders\OrderController@create')->name('order.create');
Route::get('orders/{company_id}/list', 'Orders\OrderController@list')->name('order.list');
});
});