This commit is contained in:
Ludovic CANDELLIER
2021-04-02 17:00:22 +02:00
parent 4999031563
commit 46ad2a2917
19 changed files with 30 additions and 27 deletions

View File

@@ -3,7 +3,7 @@
Route::prefix('PriceGenerics')->name('PriceGenerics.')->group(function () {
Route::get('', 'PriceGenericController@index')->name('index');
Route::get('create', 'PriceGenericController@create')->name('create');
Route::delete('destroy', 'PriceGenericController@destroy')->name('destroy');
Route::delete('destroy/{id?}', 'PriceGenericController@destroy')->name('destroy');
Route::post('update', 'PriceGenericController@update')->name('update');
Route::post('store', 'PriceGenericController@store')->name('store');
Route::get('edit/{id}', 'PriceGenericController@edit')->name('edit');