We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 18b306a + cd3cf00 commit f685c40Copy full SHA for f685c40
app/Http/Controllers/Backend/DashboardController.php
@@ -6,8 +6,9 @@
6
use App\Models\Access\Permission\Permission;
7
use App\Models\Access\Role\Role;
8
use App\Models\Access\User\User;
9
-use Illuminate\Http\Request;
10
use App\Models\Settings\Setting;
+use Illuminate\Http\Request;
11
+
12
/**
13
* Class DashboardController.
14
*/
@@ -21,7 +22,7 @@ public function index()
21
22
$settingData = Setting::first();
23
$google_analytics = $settingData->google_analytics;
24
- return view('backend.dashboard',compact('google_analytics', $google_analytics));
25
+ return view('backend.dashboard', compact('google_analytics', $google_analytics));
26
}
27
28
0 commit comments