first commit

This commit is contained in:
2026-06-16 10:45:41 +07:00
commit ccecc0bc6b
144 changed files with 124547 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CaseLabResult extends Model
{
protected $table = 'case_lab_results';
public $timestamps = false;
protected $fillable = [
'lab_code',
'is_positive',
'pathogen_name',
'subtype',
'indicator'
];
}