<?php

namespace App\Models;

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

class HcpLicense extends Model
{
    use HasFactory;
    protected $table = 'hcp_licenses';
    protected $primaryKey = 'license_id';
         public $timestamps = false;  // Disable automatic timestamps
        public $incrementing = true;
    protected $fillable = [
        'hcp_id',
        'license_number',
        'issuing_authority',
        'issue_date', 
        'expiry_date',
        'lic_document_image',   

    ];
}    
