first commit

This commit is contained in:
2024-07-12 08:03:32 +07:00
commit 7f9359656d
122 changed files with 13427 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Models\Poct;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Patients extends Model
{
use HasFactory;
protected $connection = 'sqlsrv';
protected $table = 'Patient';
public function results(){
return $this->hasMany(Results::class,'_PID', 'ID');
}
}