This commit is contained in:
ludo
2025-02-15 12:12:42 +01:00
parent d1cc62c9b1
commit 592402a6c1
53 changed files with 1098 additions and 404 deletions

View File

@@ -0,0 +1,7 @@
<?php
Route::prefix('CustomerOrders')->name('CustomerOrders.')->group(function () {
Route::get('', 'CustomerOrderController@index')->name('index');
Route::delete('destroy/{id?}', 'CustomerOrderController@destroy')->name('destroy');
Route::get('view/{id?}', 'CustomerOrderController@edit')->name('edit');
});