/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $airlines = Airline::remember(30)->get();
     return View::make('airlines/index')->with('airlines', $airlines);
 }