示例#1
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $products = Product::all();
     foreach ($products as $product) {
         $this->attachRelated($product);
     }
 }
示例#2
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $products = Product::all();
     foreach ($products as $product) {
         $this->attachCategories($product);
     }
 }