koel/database/factories/InteractionFactory.php
2020-12-22 21:11:22 +01:00

24 lines
550 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(),
];
}
}