Fix case typo
This commit is contained in:
19
routes/Shop/Admin/route.php
Normal file
19
routes/Shop/Admin/route.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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');
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user