mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-26 07:54:00 +00:00
9ed67e74e2
- Supplier (AP) - PO - DO - INV - Customer (AR) - PO - DO - INV
10 lines
369 B
PHP
10 lines
369 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'transactions', 'namespace' => 'Transactions', 'as' => 'transaction.'], function () {
|
|
|
|
Route::post('/create/{id}', 'CreateTransactionController@create')->name('create');
|
|
//Route::post('/create-transaction/{id}', 'CreateWalletTransactionController@create')->name('create_transaction');
|
|
|
|
}); |