Files
portal/routes/api.php
T
omair saleh b679ae7f40 big commit
2021-04-05 11:58:32 +08:00

27 lines
1.0 KiB
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 () {
Route::get('/storage/{fileName}/fetch', 'Documents\RenderDocumentController@fileStorageServe')->where(['fileName' => '.*'])->name('storage.document.file');
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');
});
});