/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //Lists all lots
     $lots = Lot::all();
     return View::make('lot.index')->with('lots', $lots);
 }