mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
c3f153fe4b
Update Booking Logic Class Delete Booking Logic Class
35 lines
905 B
PHP
35 lines
905 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__ . '/wallet.php';
|
|
|
|
require __DIR__ . '/document.php';
|
|
|
|
require __DIR__ . '/segment.php';
|
|
|
|
// require __DIR__ . '/company_bank.php';
|
|
|
|
require __DIR__ . '/booking.php';
|
|
|
|
Route::group(['middleware' => 'valid.token'], function () {
|
|
require __DIR__ . '/crud.php';
|
|
});
|
|
});
|