koel/database/factories/InteractionFactory.php
2024-07-06 17:44:41 +02:00

24 lines
552 B
PHP

<?php
namespace Database\Factories;
use App\Models\Interaction;
use App\Models\Song;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class InteractionFactory extends Factory
{
protected $model = Interaction::class;
/** @return array<mixed> */
public function definition(): array
{
return [
'song_id' => Song::factory(),
'user_id' => User::factory(),
'liked' => $this->faker->boolean(),
'play_count' => $this->faker->randomNumber(),
];
}
}