Example #1
0
 /**
  * @param $route
  * @param array $properties
  * @return bool|void
  */
 public static function allow($route, array $properties)
 {
     if (!Auth::check()) {
         return true;
     }
     return Redirect::route('home');
 }
Example #2
0
 /**
  * @param $route
  * @param array $properties
  * @return bool|void
  */
 public static function allow($route, array $properties)
 {
     if (\Sectorr\Core\Auth\Auth::check()) {
         return true;
     }
     return Redirect::route('login');
 }
Example #3
0
 /**
  * Helper: Redirect to the given url.
  *
  * @param $url
  */
 function url($url)
 {
     return Redirect::url($url);
 }