fixes
This commit is contained in:
7
routes/Admin/Shop/CustomerInvoices.php
Normal file
7
routes/Admin/Shop/CustomerInvoices.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('CustomerInvoices')->name('CustomerInvoices.')->group(function () {
|
||||
Route::get('', 'CustomerInvoiceController@index')->name('index');
|
||||
Route::delete('destroy/{id?}', 'CustomerInvoiceController@destroy')->name('destroy');
|
||||
Route::get('view/{id?}', 'CustomerInvoiceController@view')->name('view');
|
||||
});
|
||||
Reference in New Issue
Block a user