Template
15 lines
357 B
PHP
15 lines
357 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Patient extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'patient';
|
|
protected $fillable = ['id_patient', 'patient_name', 'medical_record_number', 'phone_number', 'gender', 'birth_date', 'address', 'active'];
|
|
}
|