mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
42 lines
1 KiB
PHP
42 lines
1 KiB
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Str;
|
|
|
|
class UserFactory extends Factory
|
|
{
|
|
protected $model = User::class;
|
|
|
|
/** @return array<mixed> */
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'name' => $this->faker->name,
|
|
'email' => $this->faker->email,
|
|
'password' => Hash::make('secret'),
|
|
'is_admin' => false,
|
|
'preferences' => [
|
|
'lastfm_session_key' => Str::random(),
|
|
],
|
|
'remember_token' => Str::random(10),
|
|
];
|
|
}
|
|
|
|
public function admin(): self
|
|
{
|
|
return $this->state(fn () => ['is_admin' => true]); // @phpcs:ignore
|
|
}
|
|
|
|
public function prospect(): self
|
|
{
|
|
return $this->state(fn () => [ // @phpcs:ignore
|
|
'invitation_token' => Str::random(),
|
|
'invited_at' => now(),
|
|
'invited_by_id' => User::factory()->admin(),
|
|
]);
|
|
}
|
|
}
|