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

@@ -2,27 +2,30 @@
Route::middleware('auth')->prefix('Shop')->namespace('Shop')->name('Shop.')->group(function () {
Route::get('dashboard', 'DashboardController@index')->name('dashboard');
include_once __DIR__ . '/ArticleNatures.php';
include_once __DIR__ . '/Articles.php';
include_once __DIR__ . '/Categories.php';
include_once __DIR__ . '/Customers.php';
include_once __DIR__ . '/CustomerAddresses.php';
include_once __DIR__ . '/Deliveries.php';
include_once __DIR__ . '/Homepages.php';
include_once __DIR__ . '/InvoiceItems.php';
include_once __DIR__ . '/Invoices.php';
include_once __DIR__ . '/Merchandises.php';
include_once __DIR__ . '/Offers.php';
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';
include_once __DIR__ . '/TagGroups.php';
include_once __DIR__ . '/Tariffs.php';
include_once __DIR__ . '/TariffUnities.php';
include_once __DIR__ . '/Unities.php';
include_once __DIR__ . '/Variations.php';
include_once __DIR__.'/ArticleNatures.php';
include_once __DIR__.'/Articles.php';
include_once __DIR__.'/Categories.php';
include_once __DIR__.'/Customers.php';
include_once __DIR__.'/CustomerAddresses.php';
include_once __DIR__.'/Deliveries.php';
include_once __DIR__.'/DeliveryPackages.php';
include_once __DIR__.'/DeliveryTypes.php';
include_once __DIR__.'/DeliveryTypeCalculations.php';
include_once __DIR__.'/Homepages.php';
include_once __DIR__.'/InvoiceItems.php';
include_once __DIR__.'/Invoices.php';
include_once __DIR__.'/Merchandises.php';
include_once __DIR__.'/Offers.php';
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';
include_once __DIR__.'/TagGroups.php';
include_once __DIR__.'/Tariffs.php';
include_once __DIR__.'/TariffUnities.php';
include_once __DIR__.'/Unities.php';
include_once __DIR__.'/Variations.php';
});