<?php

namespace App\Models;

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

class HcpEducation extends Model
{
    use HasFactory;

    protected $table = 'hcp_education';
    protected $primaryKey = 'education_id';
      public $timestamps = false;  // Disable automatic timestamps
        public $incrementing = true;
    protected $fillable = [
        'hcp_id',
        'degree',
        'specialization',
        'awarded_year',
        'document_image',   

    ];
}  
