/** * @param $route * @param array $properties * @return bool|void */ public static function allow($route, array $properties) { if (!Auth::check()) { return true; } return Redirect::route('home'); }
/** * @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'); }
/** * Helper: Returns logged in user. * * @param $view * @return string * @throws \Sectorr\Core\Exceptions\ViewNotFoundException */ function user() { return Auth::user(); }