예제 #1
0
 public function __construct()
 {
     parent::__construct();
     // Setup the IoC Container instance.
     $this->container = App::instance();
     // Setup the Middleware.
     $this->beforeFilter('@filterRequests');
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
     //restrict access to admin users only
     $this->beforeFilter('@adminUsersFilter');
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
     //
     $this->beforeFilter('@adminUsersFilter');
 }