public function run () { DB::table('car_attribs')->delete(); $car = Car::all(); }
/** * Display cars list. * * @return Reponse */ public function index() { return Spot::where('imei', '359006059517510')->limit(10)->get(); return Car::all(); }