45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Beike\Models\Product;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
* @throws \Throwable
|
|
*/
|
|
public function run()
|
|
{
|
|
// \App\Models\User::factory(10)->create();
|
|
// $this->duplicate();
|
|
}
|
|
|
|
/**
|
|
* @throws \Throwable
|
|
*/
|
|
private function duplicate(): void
|
|
{
|
|
$baseProduct = Product::with(['productCategories', 'descriptions', 'skus'])->findOrFail(2);
|
|
$newProduct = $baseProduct->replicate();
|
|
$newProduct->saveOrFail();
|
|
$newProductId = $newProduct->id;
|
|
|
|
if ($newProductId) {
|
|
$relations = $baseProduct->getRelations();
|
|
foreach ($relations as $name => $relation) {
|
|
dump($name);
|
|
foreach ($relation as $relationRecord) {
|
|
$newRelationship = $relationRecord->replicate();
|
|
$newRelationship->product_id = $newProductId;
|
|
$newRelationship->push();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|