add shipping rules

This commit is contained in:
Ludovic CANDELLIER
2023-07-16 14:45:42 +02:00
parent 72a7b270f9
commit 0879b0abf0
459 changed files with 6219 additions and 5416 deletions

View File

@@ -1,16 +1,15 @@
<?php
Route::prefix('PriceLists')->name('PriceLists.')->group(function () {
Route::get('', 'PriceListController@index')->name('index');
Route::get('create', 'PriceListController@create')->name('create');
Route::get('edit/{id}', 'PriceListController@edit')->name('edit');
Route::post('store', 'PriceListController@store')->name('store');
Route::delete('destroy/{id?}', 'PriceListController@destroy')->name('destroy');
Route::get('getPrices/{id?}', 'PriceListController@getPrice')->name('getPrices');
Route::get('', 'PriceListController@index')->name('index');
Route::get('create', 'PriceListController@create')->name('create');
Route::get('edit/{id}', 'PriceListController@edit')->name('edit');
Route::post('store', 'PriceListController@store')->name('store');
Route::delete('destroy/{id?}', 'PriceListController@destroy')->name('destroy');
Route::get('getPrices/{id?}', 'PriceListController@getPrice')->name('getPrices');
Route::get('modalCreate/{tariff_id?}', 'PriceListController@modalCreate')->name('modalCreate');
Route::get('modalEdit/{id?}', 'PriceListController@modalEdit')->name('modalEdit');
Route::post('storeAjax', 'PriceListController@storeAjax')->name('storeAjax');
Route::get('modalCreate/{tariff_id?}', 'PriceListController@modalCreate')->name('modalCreate');
Route::get('modalEdit/{id?}', 'PriceListController@modalEdit')->name('modalEdit');
Route::post('storeAjax', 'PriceListController@storeAjax')->name('storeAjax');
});