add payments by invoice
This commit is contained in:
11
routes/Admin/Shop/InvoicePayments.php
Normal file
11
routes/Admin/Shop/InvoicePayments.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('InvoicePayments')->name('InvoicePayments.')->group(function () {
|
||||
Route::get('', 'InvoicePaymentController@index')->name('index');
|
||||
Route::get('create', 'InvoicePaymentController@create')->name('create');
|
||||
Route::delete('destroy', 'InvoicePaymentController@destroy')->name('destroy');
|
||||
Route::post('update', 'InvoicePaymentController@update')->name('update');
|
||||
Route::post('store', 'InvoicePaymentController@store')->name('store');
|
||||
Route::get('edit/{id}', 'InvoicePaymentController@edit')->name('edit');
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user