1 | <?php namespace Arcanesoft\Blog\Http\Controllers\Admin; |
||
11 | class DashboardController extends Controller |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Constructor |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * DashboardController constructor. |
||
20 | */ |
||
21 | public function __construct() |
||
22 | { |
||
23 | parent::__construct(); |
||
24 | |||
25 | $this->setCurrentPage('blog-dashboard'); |
||
26 | $this->addBreadcrumbRoute(trans('blog::dashboard.titles.statistics'), 'admin::blog.dashboard'); |
||
27 | } |
||
28 | |||
29 | /* ----------------------------------------------------------------- |
||
30 | | Main Methods |
||
31 | | ----------------------------------------------------------------- |
||
32 | */ |
||
33 | |||
34 | /** |
||
35 | * Get the dashboard page. |
||
36 | * |
||
37 | * @return \Illuminate\View\View |
||
38 | */ |
||
39 | public function index() |
||
47 | } |
||
48 |