示例#1
0
 /**
  *
  */
 public function run()
 {
     Food::truncate();
     DB::table('food_unit')->truncate();
     foreach (User::all() as $user) {
         $this->user = $user;
         $this->unitIds = Unit::where('user_id', $user->id)->where('for', 'food')->lists('id')->all();
         $this->insertFoods();
     }
 }