for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Pages\Bases;
use Arcanesoft\Core\Bases\FoundationController as BaseController;
use Arcanesoft\Core\Traits\Notifyable;
/**
* Class FoundationController
*
* @package Arcanesoft\Pages\Bases
* @author ARCANEDEV <[email protected]>
*/
class FoundationController extends BaseController
{
/* ------------------------------------------------------------------------------------------------
| Traits
| ------------------------------------------------------------------------------------------------
use Notifyable;
| Properties
* The view namespace.
* @var string
protected $viewNamespace = 'pages';
| Constructor
* Instantiate the controller.
public function __construct()
parent::__construct();
$this->addBreadcrumbRoute('CMS', 'pages::foundation.dashboard');
}