Files
opensem/routes/Admin/Shop/route.php
2024-01-05 01:30:46 +01:00

32 lines
1.3 KiB
PHP

<?php
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__.'/Contents.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__.'/InvoicePayments.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';
});