public function __construct(ShowUser $showUser) { parent::__construct(); $this->middleware('guest', array('only' => array('login', 'register'))); $this->middleware('auth', array('only' => array('index', 'show', 'logout'))); $this->showUser = $showUser; }
public function __construct() { parent::__construct(); $this->middleware('auth'); $this->middleware('auth.admin'); app('veer')->loadedComponents['template'] = app('veer')->template = $this->template = config('veer.template-admin'); app('veer')->isBoundSite = false; }
public function __construct(ShowAttribute $showAttribute) { parent::__construct(); $this->showAttribute = $showAttribute; }
public function __construct() { parent::__construct(); $this->middleware('auth'); $this->middleware('auth.admin'); }
public function __construct(ShowTag $showTag) { parent::__construct(); $this->showTag = $showTag; }
public function __construct(ShowCategory $showCategory) { parent::__construct(); $this->showCategory = $showCategory; }
public function __construct(ShowSearch $showSearch) { parent::__construct(); $this->showSearch = $showSearch; }
public function __construct(ShowOrder $showOrder) { parent::__construct(); //$this->beforeFilter('auth', array('only' => array('index', 'show'))); $this->showOrder = $showOrder; }
public function __construct(ShowPage $showPage) { parent::__construct(); $this->showPage = $showPage; }
public function __construct(ShowFilter $showFilter) { parent::__construct(); $this->showFilter = $showFilter; }
public function __construct(ShowProduct $showProduct) { parent::__construct(); $this->showProduct = $showProduct; }