Ejemplo n.º 1
0
  public function run () 
  {
  
    DB::table('car_attribs')->delete();

    $car = Car::all(); 


  
  }
Ejemplo n.º 2
0
 /**
  * Display cars list.
  *
  * @return Reponse
  */
 public function index()
 {
     return Spot::where('imei', '359006059517510')->limit(10)->get();
     return Car::all();
 }