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

@@ -13,14 +13,14 @@ Route::prefix('')->namespace('Shop')->name('Shop.')->group(function () {
});
Route::prefix('')->namespace('Shop')->name('Shop.')->group(function () {
include_once __DIR__ . '/Articles.php';
include_once __DIR__ . '/Baskets.php';
include_once __DIR__ . '/Categories.php';
include_once __DIR__ . '/Customers.php';
include_once __DIR__ . '/Invoices.php';
include_once __DIR__ . '/Offers.php';
include_once __DIR__ . '/Orders.php';
include_once __DIR__ . '/Orders.php';
include_once __DIR__ . '/OrderPayments.php';
include_once __DIR__ . '/Searches.php';
include_once __DIR__.'/Articles.php';
include_once __DIR__.'/Baskets.php';
include_once __DIR__.'/Categories.php';
include_once __DIR__.'/Customers.php';
include_once __DIR__.'/Invoices.php';
include_once __DIR__.'/Offers.php';
include_once __DIR__.'/Orders.php';
include_once __DIR__.'/Orders.php';
include_once __DIR__.'/OrderPayments.php';
include_once __DIR__.'/Searches.php';
});