| 1 | <?php namespace Arcanesoft\Foundation\Http\Controllers\Admin; | ||
| 9 | class DashboardController extends Controller | ||
| 10 | { | ||
| 11 | /* ----------------------------------------------------------------- | ||
| 12 | | Constructor | ||
| 13 | | ----------------------------------------------------------------- | ||
| 14 | */ | ||
| 15 | |||
| 16 | /** | ||
| 17 | * DashboardController constructor. | ||
| 18 | */ | ||
| 19 | public function __construct() | ||
| 26 | |||
| 27 | /* ----------------------------------------------------------------- | ||
| 28 | | Main Methods | ||
| 29 | | ----------------------------------------------------------------- | ||
| 30 | */ | ||
| 31 | |||
| 32 | /** | ||
| 33 | * Show the foundation dashboard. | ||
| 34 | * | ||
| 35 | * @return string | ||
| 36 | */ | ||
| 37 | public function index() | ||
| 43 | } | ||
| 44 |