add shipping to order, methods to calculate, little refactoring
This commit is contained in:
@@ -5,7 +5,7 @@ Route::prefix('Panier')->name('Basket.')->group(function () {
|
||||
Route::post('addBasket', 'BasketController@addBasket')->name('addBasket');
|
||||
Route::get('modalBasket/{offer_id?}/{quantity?}', 'BasketController@modalBasket')->name('modalBasket');
|
||||
Route::get('getBasket', 'BasketController@getBasket')->name('getBasket');
|
||||
Route::get('getBasketTotal', 'BasketController@getBasketTotal')->name('getBasketTotal');
|
||||
Route::get('getBasketTotal/{deliveryId?}/{deliveryTypeId?}', 'BasketController@getBasketTotal')->name('getBasketTotal');
|
||||
Route::get('getSummary', 'BasketController@getSummary')->name('getSummary');
|
||||
Route::get('countBasket', 'BasketController@countBasket')->name('countBasket');
|
||||
Route::get('clearBasket', 'BasketController@clearBasket')->name('clearBasket');
|
||||
|
||||
Reference in New Issue
Block a user