Laravel polimorfic faker code example
Example 1: Laravel polimorfic faker
$video = Video::factory()->hasComments(3)->create();
Example 2: Laravel polimorfic faker
<?php
namespace Database\Factories;
use App\Models\Comment;
use App\Models\Post;
use App\Models\Video;
use Illuminate\Database\Eloquent\Factories\Factory;
class CommentFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Comment::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
$commentable = $this->commentable();
return [
'body' => $this->faker->paragraph,
'commentable_id' => $commentable::factory(),
'commentable_type' => $commentable,
];
}
public function commentable()
{
return $this->faker->randomElement([
Post::class,
Video::class,
]);
}
}
Example 3: Laravel polimorfic faker
$comments = Comment::factory()->count(3)->for(
Video::factory(), 'commentable'
)->create();