Template
username : backend-kynantio password : test-programmer-20205
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?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'];
|
||||
}
|
||||
Reference in New Issue
Block a user