Files
exchange-2.0/routes/wallet.php
T
2020-11-30 06:38:06 +08:00

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');
});