mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 04:24:16 +00:00
10 lines
342 B
PHP
10 lines
342 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'wallets', 'namespace' => 'Wallets', 'as' => 'wallet.'], function () {
|
|
|
|
Route::post('/create', 'CreateWalletController@create')->name('create');
|
|
Route::post('/create-transaction/{id}', 'CreateWalletTransactionController@create')->name('create_transaction');
|
|
|
|
}); |