Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
yahia05 committed Sep 23, 2023
1 parent e49eded commit 57bcfad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/web.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use App\Http\Controllers\Admin\DashboardController;
use App\Http\Controllers\Admin\DashboardController as admindashboard;
use App\Http\Controllers\DashboardController;
use App\Http\Controllers\Admin\StatsController;
use App\Http\Controllers\HomeController;
Expand Down Expand Up @@ -82,7 +82,7 @@

// Task 10: point URL /admin/dashboard to a "Single Action" Admin/DashboardController
// Put one code line here below
Route::get('/dashboard',Admin\DashboardController::class);
Route::get('/dashboard',admindashboard::class);

// Task 11: point URL /admin/stats to a "Single Action" Admin/StatsController
// Put one code line here below
Expand Down

0 comments on commit 57bcfad

Please sign in to comment.