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