Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/medimeet.codeskitter.site/app/Models/
Upload File :
Current File : /home/users/unlimited/www/medimeet.codeskitter.site/app/Models/PatientModel.php

<?php

namespace App\Models;

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

class PatientModel extends Model
{
    use HasFactory;
    protected $table = 'patients';
    protected $fillable = [
      
    ];

    /**
     * The attributes that should be hidden for serialization.
     *
     * @var array<int, string>
     */
    protected $hidden = [

    ];
}