<?php

namespace Database\Factories;

use App\Models\JobSeekerSubscriptionRates; 

use Illuminate\Database\Eloquent\Factories\Factory;

/**
 * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Model>
 */
class JobSeekerSubscriptionRateFactory extends Factory
{
    /**
     * The name of the factory's corresponding model 
     * 
     * @var string 
     */
    protected $model = JobSeekerSubscriptionRates::class; 

    /**
     * Define the model's default state.
     *
     * @return array<string, mixed>
     */
    public function definition(): array
    {
        return [
            'name'        => $this->faker->title(),
            'description' => $this->faker->sentence(5, true),
            'month'       => $this->faker->numberBetween(1, 60),
            'rate'        => $this->faker->numberBetween(10, 100),
            'is_disabled' => false,
        ];
    }
}
