username : backend-kynantio password : test-programmer-20205

This commit is contained in:
yose
2025-12-02 13:34:49 +07:00
parent efffe71082
commit 961c95553f
28 changed files with 658 additions and 160 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PatientVisit extends Model
{
use HasFactory;
protected $table = 'patientVisit';
protected $fillable = ['barcode', 'registration_date', 'service_date', 'check_in_date', 'check_in', 'active'];
}