Files
Global-Jain/routes/admin/with_auth/dashboard.php

12 lines
251 B
PHP
Raw Permalink Normal View History

2025-11-05 10:37:10 +05:30
<?php
use App\Http\Controllers\Backend\DashboardController;
//dashboard rout
Route::group(
['middleware' => [
//
]], function () {
Route::get('dashboard', [DashboardController::class, 'dashboard'])->name('dashboard');
});