mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
18 lines
806 B
PHP
18 lines
806 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'transactions', 'namespace' => 'Transactions', 'as' => 'transaction.'], function () {
|
|
|
|
Route::get('/list', 'ListTransactionsController@list')->name('list');
|
|
// Route::delete('/suspend/{id}', 'SuspendTransactionController@suspend')->name('suspend');
|
|
|
|
route::post('/payment/create', 'CreatePaymentTransactionController@create')->name('payment.create');
|
|
route::post('/shipping-invoice/create', 'CreateShippingInvoiceTransactionController@create')->name('supplier.create');
|
|
|
|
|
|
// route::post('{id}/bill/verification', 'CreatePaymentProofDocumentController@verify')->name('bill.verification');
|
|
|
|
// Route::post('booking/{id}/details/update', 'CreatePurchaseOrderTransactionController@create')->name('po.create');
|
|
|
|
}); |