20 lines
689 B
PHP
20 lines
689 B
PHP
<?php
|
|
|
|
Route::middleware('auth')->prefix('Admin')->namespace('Admin')->name('Admin.')->group(function () {
|
|
Route::get('dashboard', 'DashboardController@index')->name('dashboard');
|
|
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__ . '/ProductAttributes.php');
|
|
include( __DIR__ . '/ProductPrices.php');
|
|
include( __DIR__ . '/Products.php');
|
|
include( __DIR__ . '/Sections.php');
|
|
|
|
include( __DIR__ . '/../../Admin/Shop/route.php');
|
|
|
|
});
|