koel/database/factories/UserFactory.php
2021-06-05 12:47:56 +02:00

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
}
}