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