22 lines
799 B
PHP
22 lines
799 B
PHP
<?php
|
|
|
|
Route::middleware('auth')->prefix('Admin')->namespace('Admin')->name('Admin.')->group(function () {
|
|
Route::get('dashboard', 'DashboardController@index')->name('dashboard');
|
|
include __DIR__ . '/ArticleFamilies.php';
|
|
include __DIR__ . '/ArticlePrices.php';
|
|
include __DIR__ . '/Articles.php';
|
|
include __DIR__ . '/Categories.php';
|
|
include __DIR__ . '/Customers.php';
|
|
include __DIR__ . '/Inventories.php';
|
|
include __DIR__ . '/InventoryPlaces.php';
|
|
include __DIR__ . '/InvoiceItems.php';
|
|
include __DIR__ . '/Invoices.php';
|
|
include __DIR__ . '/OrderPayments.php';
|
|
include __DIR__ . '/Orders.php';
|
|
include __DIR__ . '/PriceFamilies.php';
|
|
include __DIR__ . '/PriceGenerics.php';
|
|
include __DIR__ . '/Tags.php';
|
|
include __DIR__ . '/TagGroups.php';
|
|
include __DIR__ . '/Unities.php';
|
|
});
|