Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
Bimaekap committed Sep 21, 2023
1 parent 613a1c6 commit b5a85a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions routes/web.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

use App\Http\Controllers\Admin\DashboardController;
use App\Http\Controllers\Auth\AuthenticatedSessionController;
use App\Http\Controllers\DashboardController as ControllersDashboardController;
use App\Http\Controllers\Admin\DashboardController as AdminDashboardController;
use App\Http\Controllers\Admin\StatsController;
use App\Http\Controllers\DashboardController;
use App\Http\Controllers\HomeController;
use App\Http\Controllers\TaskController;
use App\Http\Controllers\UserController;
Expand Down Expand Up @@ -76,10 +76,10 @@
// Task 10: point URL /admin/dashboard to a "Single Action" Admin/DashboardController
// Put one code line here below

Route::get('/admin/dashboard', App\Http\Controllers\DashboardController::class);
Route::get('/dashboard', AdminDashboardController::class);
// Task 11: point URL /admin/stats to a "Single Action" Admin/StatsController
// Put one code line here below
Route::get('/stats', App\Http\Controllers\Admin\StatsController::class);
Route::get('/stats', StatsController::class);
// End of the /admin Route Group
});

Expand Down

0 comments on commit b5a85a2

Please sign in to comment.