/**
  * Call the parent construct
  */
 public function __construct()
 {
     parent::__construct();
     if (!Auth::isLogged()) {
         Url::redirect('login');
     }
     if (!Auth::hasPermission('manage-companies')) {
         Url::redirect('forbidden');
     }
     $this->language->load('companies');
     $this->company = new \Models\Company();
 }