18 lines
358 B
PHP
18 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MisReanimation extends Model
|
|
{
|
|
protected $table = 'stt_reanimation';
|
|
|
|
protected $primaryKey = 'ReanimationID';
|
|
|
|
public function migrationPatient()
|
|
{
|
|
return $this->belongsTo(MisMigrationPatient::class, 'rf_MigrationPatientID', 'MigrationPatientID');
|
|
}
|
|
}
|