mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-22 14:04:01 +00:00
14 lines
329 B
PHP
14 lines
329 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'wallet', 'namespace' => 'Wallets', 'as' => 'wallet.'], function () {
|
|
|
|
Route::group(['prefix' => 'authentication', 'as' => 'authentication.'], function () {
|
|
|
|
});
|
|
|
|
|
|
Route::post('/create', 'CreateWalletController@create')->name('create');
|
|
|
|
}); |