<?php

namespace App\Models;

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

class Patientnew extends Model
{
    use HasFactory;
    protected $table = 'patientnew';
    protected $primaryKey = 'patient_id';
    protected $fillable = [
        'unique_id',
        'first_name',
        'middle_name',
        'last_name',
        'address',
        'date_of_birth',
        'sex',
        'patient_phone_num_country_code',
        'patient_phone_number',
        'patient_er_country_code',
        'patient_er_phone_number',
        'aadhar_card_num',
        'pan_card_num',
        'ssn_card_num',
        'cibil_score',
        'profession',
        'employment_status',
        'marital_status',
        'father_name',
        'mother_name',
        'male_siblings',
        'female_siblings',
        'consent_to_contact',
        'medical_billing_address',
        'current_medications',
        'previous_health_history',
        'consent_to_treatment',
        'allergies',
        'photo',
        'drivers_license',
        'aadhar_card',
        'ssn_card',
        'pan_card',
    ];
}
