コード例 #1
0
 /**
  * Display Bus root informations  
  * Check user is logged or not, if not return login page
  * Otherwise get the nearest bus stops to the user
  *
  * @return Response
  */
 public function index()
 {
     if (!Auth::guest()) {
         $busLib = new BusServiceLib();
         $busStops = $busLib->getUserNearestLocation();
         return view("home", ['busStops' => $busStops]);
     } else {
         return view("auth/login");
     }
 }