<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

use Database\Factories\JobSeekerSubscriptionRateFactory; 

class JobSeekerSubscriptionRates extends Model
{
    use HasFactory;

    protected $table    = 'job_seekers_subscription_rates';

    protected $fillable = 
    [
        'name',
        'description',
        'month',
        'rate',
        'is_disabled',
    ];

    /**
     * Create a new factory instance for the model.
     * 
     * @return Factory 
     */
    protected static function newFactory(): Factory
    {
        return JobSeekerSubscriptionRateFactory::new();
    }
}
