test wawancara

This commit is contained in:
person-programmer
2025-12-02 13:32:45 +07:00
parent efffe71082
commit fcde54700f
15 changed files with 276 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PatientAttachment extends Model
{
use HasFactory;
protected $table = 'master.ms_patient_attachment';
public function patient()
{
return $this->belongsTo(PatientModel::class, 'fk_ms_patient_id');
}
}