<?php

namespace Database\Factories;

use App\Models\CompanySubscriptionRates; 

use Illuminate\Database\Eloquent\Factories\Factory;

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

    /**
     * Define the model's default state.
     *
     * @return array<string, mixed>
     */
    public function definition(): array
    {
        return [
            'name'         => $this->faker->words(3, true),
            'description'  => $this->faker->sentence(),
            'monthly_rate' => $this->faker->numberBetween(5, 1000),
            'yearly_rate'  => $this->faker->numberBetween(5, 1000),
            'max_employee' => $this->faker->numberBetween(5, 1000),
            'is_unlimited' => false,
            "is_disabled"  => false, 

        ];
    }
}
