<?php

namespace App\Models;

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

class JobseekerPayment extends Model
{
    use HasFactory;
    
    protected $table    = 'jobseeker_payments';
    
    protected $fillable = 
    [
        'jobseeker_subscription_id',
        'rate_id',
        'invoice_no',
        'customer_id',
        'charge_id',
        'amount_paid',
        'duration',
        'date_paused',
    ];
}
