| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php namespace Arcanesoft\Foundation\Http\Controllers\Admin; |
||
| 9 | class SettingsController extends Controller |
||
| 10 | { |
||
| 11 | /* ----------------------------------------------------------------- |
||
| 12 | | Constructor |
||
| 13 | | ----------------------------------------------------------------- |
||
| 14 | */ |
||
| 15 | |||
| 16 | /** |
||
| 17 | * SettingsController constructor. |
||
| 18 | */ |
||
| 19 | public function __construct() |
||
| 20 | { |
||
| 21 | parent::__construct(); |
||
| 22 | |||
| 23 | $this->setCurrentPage('foundation-settings'); |
||
| 24 | $this->addBreadcrumbRoute('Settings', 'admin::foundation.settings.index'); |
||
| 25 | } |
||
| 26 | |||
| 27 | /* ----------------------------------------------------------------- |
||
| 28 | | Main Methods |
||
| 29 | | ----------------------------------------------------------------- |
||
| 30 | */ |
||
| 31 | |||
| 32 | public function index() |
||
| 40 | } |
||
| 41 | } |
||
| 42 |