如何用laravel工厂添加数据到相关的table?
How with laravel factory add data to related table?
在 laravel 8 应用程序中,我为广告 table 添加了工厂的虚拟数据:
$ads = Ad::factory()->count(10)->expired($year, $month)->create([
]);
与 database/factories/AdFactory.php:
<?php
namespace Database\Factories;
use Config;
use Carbon\Carbon;
use App\Models\Ad;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use \Cviebrock\EloquentSluggable\Services\SlugService;
class AdFactory extends Factory
{
protected $model = Ad::class;
public function definition()
{
$text= $this->faker->text;
$slugValue = SlugService::createSlug(Ad::class, 'slug', $text);
return [
'title' => $text,
'ad_token' => $text,
'slug' => $slugValue,
'phone_display' => (rand(1, 3) == 1),
'has_locations' => (rand(1, 4) == 1),
'status' => 'A',
'price' => mt_rand(10, 500),
'ad_type' => (rand(1, 2) == 1 ? 'B' : 'S'),
'description' => $this->faker->paragraphs(rand(1, 4), true),
'creator_id' => rand(1, 5),
];
}
public function expired($year, $month)
{
return $this->state(function (array $attributes) use($year, $month) {
$dateStr= $year.'-'.str_pad($month, 2, "0", STR_PAD_LEFT).'-01';
$startDate= Carbon::createFromFormat('Y-m-d', $dateStr);
return [
'expire_date' => $this->faker->dateTimeInInterval($startDate, '1 month', Config::get('app.timezone'))->format('Y-m-d H:i:s')
];
});
}
}
它工作正常,但我想知道如何将虚拟数据添加到相关的 ad_categories(有 ad_id 字段)?
定义方法 returns 广告对象(具有新 ID)以及我在哪里可以访问它?
谢谢!
您可以创建一个 CategoryFactory class 并创建虚拟类别,然后 select 一个随机类别 category_id
一对多关系
//...
public function definition()
{
return [
//your code
'creatory_id' => $this->faker->randomElement(Category::all())['id'],
];
}
//...
或
public function definition()
{
return [
//your code
'creatory_id' => factory(Category::class)->create()->id,
];
}
第二种解决方案将为每个广告创建一个新类别
对于多对多关系
namespace Database\Factories;
use App\Models\AdFactory;
use App\Models\Category;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
class AdFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Ad::class;
/**
* Configure the model factory.
*
* @return $this
*/
public function configure()
{
return $this->afterCreating(function (Ad $newAd) {
$adCategory = AdCategory::factory()->count(1)->create([ 'ad_id' => $newAd->id, 'category_id' => $this->faker->randomElement(Category::all())['id']);
});
}
// ...
}
有关详细信息,请访问 https://laravel.com/docs/8.x/database-testing#factory-callbacks
和https://laravel.com/docs/8.x/database-testing#polymorphic-many-to-many-relationships
在 laravel 8 应用程序中,我为广告 table 添加了工厂的虚拟数据:
$ads = Ad::factory()->count(10)->expired($year, $month)->create([
]);
与 database/factories/AdFactory.php:
<?php
namespace Database\Factories;
use Config;
use Carbon\Carbon;
use App\Models\Ad;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use \Cviebrock\EloquentSluggable\Services\SlugService;
class AdFactory extends Factory
{
protected $model = Ad::class;
public function definition()
{
$text= $this->faker->text;
$slugValue = SlugService::createSlug(Ad::class, 'slug', $text);
return [
'title' => $text,
'ad_token' => $text,
'slug' => $slugValue,
'phone_display' => (rand(1, 3) == 1),
'has_locations' => (rand(1, 4) == 1),
'status' => 'A',
'price' => mt_rand(10, 500),
'ad_type' => (rand(1, 2) == 1 ? 'B' : 'S'),
'description' => $this->faker->paragraphs(rand(1, 4), true),
'creator_id' => rand(1, 5),
];
}
public function expired($year, $month)
{
return $this->state(function (array $attributes) use($year, $month) {
$dateStr= $year.'-'.str_pad($month, 2, "0", STR_PAD_LEFT).'-01';
$startDate= Carbon::createFromFormat('Y-m-d', $dateStr);
return [
'expire_date' => $this->faker->dateTimeInInterval($startDate, '1 month', Config::get('app.timezone'))->format('Y-m-d H:i:s')
];
});
}
}
它工作正常,但我想知道如何将虚拟数据添加到相关的 ad_categories(有 ad_id 字段)? 定义方法 returns 广告对象(具有新 ID)以及我在哪里可以访问它?
谢谢!
您可以创建一个 CategoryFactory class 并创建虚拟类别,然后 select 一个随机类别 category_id
一对多关系
//...
public function definition()
{
return [
//your code
'creatory_id' => $this->faker->randomElement(Category::all())['id'],
];
}
//...
或
public function definition()
{
return [
//your code
'creatory_id' => factory(Category::class)->create()->id,
];
}
第二种解决方案将为每个广告创建一个新类别
对于多对多关系
namespace Database\Factories;
use App\Models\AdFactory;
use App\Models\Category;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
class AdFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Ad::class;
/**
* Configure the model factory.
*
* @return $this
*/
public function configure()
{
return $this->afterCreating(function (Ad $newAd) {
$adCategory = AdCategory::factory()->count(1)->create([ 'ad_id' => $newAd->id, 'category_id' => $this->faker->randomElement(Category::all())['id']);
});
}
// ...
}
有关详细信息,请访问 https://laravel.com/docs/8.x/database-testing#factory-callbacks
和https://laravel.com/docs/8.x/database-testing#polymorphic-many-to-many-relationships