Example #1
0
 public function middleOfTheWorld()
 {
     $tour = Cache::rememberForever('middleOfTheWorld', function () {
         return Tour::first();
     });
     //$tour = Tour::first();
     return View::make('tours.middle-of-the-world', compact('tour'));
 }