for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Foundation\Http\Controllers;
use Arcanesoft\Core\Bases\FoundationController;
use Arcanesoft\Core\Traits\Notifyable;
/**
* Class SettingsController
*
* @package Arcanesoft\Foundation\Http\Controllers
* @author ARCANEDEV <[email protected]>
*/
class SettingsController extends FoundationController
{
/* ------------------------------------------------------------------------------------------------
| Traits
| ------------------------------------------------------------------------------------------------
use Notifyable;
| Constructor
* SettingsController constructor.
public function __construct()
parent::__construct();
$this->setCurrentPage('foundation-settings');
$this->addBreadcrumbRoute('Settings', 'foundation::settings.index');
}
| Main Functions
public function index()
$title = 'Generals';
$this->setTitle('Settings - ' . $title);
$this->addBreadcrumb($title);
$this->setCurrentPage('foundation-settings-generals');
return $this->view('settings.index');