mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
33 lines
805 B
PHP
33 lines
805 B
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
|
|
}
|
|
}
|