Add categories generic prices

This commit is contained in:
Ludovic CANDELLIER
2021-04-02 17:56:48 +02:00
parent 556f78d0af
commit 50179840d9
4 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
Route::prefix('PriceGenericCategories')->name('PriceGenericCategories.')->group(function () {
Route::get('', 'PriceGenericCategoryController@index')->name('index');
Route::get('create', 'PriceGenericCategoryController@create')->name('create');
Route::delete('destroy/{id?}', 'PriceGenericCategoryController@destroy')->name('destroy');
Route::post('update', 'PriceGenericCategoryController@update')->name('update');
Route::post('store', 'PriceGenericCategoryController@store')->name('store');
Route::get('edit/{id}', 'PriceGenericCategoryController@edit')->name('edit');
});