add metrics
This commit is contained in:
10
routes/Admin/Shop/PriceListValues.php
Normal file
10
routes/Admin/Shop/PriceListValues.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('PriceListValues')->name('PriceListValues.')->group(function () {
|
||||
Route::get('', 'PriceListValueController@index')->name('index');
|
||||
Route::get('create', 'PriceListValueController@create')->name('create');
|
||||
Route::delete('destroy/{id?}', 'PriceListValueController@destroy')->name('destroy');
|
||||
Route::post('store', 'PriceListValueController@store')->name('store');
|
||||
Route::get('edit/{id}', 'PriceListValueController@edit')->name('edit');
|
||||
Route::get('addPrice/{index?}', 'PriceListValueController@addPrice')->name('addPrice');
|
||||
});
|
||||
@@ -19,6 +19,7 @@ Route::middleware('auth')->prefix('Shop')->namespace('Shop')->name('Shop.')->gro
|
||||
include_once __DIR__.'/Orders.php';
|
||||
include_once __DIR__.'/Packages.php';
|
||||
include_once __DIR__.'/PriceLists.php';
|
||||
include_once __DIR__.'/PriceListValues.php';
|
||||
include_once __DIR__.'/Producers.php';
|
||||
include_once __DIR__.'/SaleChannels.php';
|
||||
include_once __DIR__.'/Tags.php';
|
||||
|
||||
Reference in New Issue
Block a user