17 lines
369 B
PHP
17 lines
369 B
PHP
<?php
|
|
|
|
namespace App\Models\Mis;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SttMigrationPatient extends Model
|
|
{
|
|
protected $table = 'stt_migrationpatient';
|
|
protected $primaryKey = 'MigrationPatientID';
|
|
|
|
public function stationarBranch()
|
|
{
|
|
return $this->hasOne(SttStationarBranch::class, 'StationarBranchID', 'rf_StationarBranchID');
|
|
}
|
|
}
|