<?php

namespace Database\Factories;

use Illuminate\Database\Eloquent\Factories\Factory;

use App\Models\User;

class StaffProfileFactory extends Factory
{
    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            'user_id' => User::factory(),
            'first_name' => $this->faker->firstName(),
            'last_name' => $this->faker->lastName(),
            'bio' => $this->faker->paragraph(),
            'bio_draft' => $this->faker->paragraph(),
            'credentials' => $this->faker->name(),
            'departments' => $this->faker->name(),
            'published_at' => now()->subMinutes(10),
        ];
    }
}
