18 lines
377 B
PHP
18 lines
377 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MisOperationPurpose extends Model
|
|
{
|
|
protected $table = 'stt_operationpurpose';
|
|
|
|
protected $primaryKey = 'OperationPurposeID';
|
|
|
|
public function surgicalOperation()
|
|
{
|
|
return $this->belongsTo(MisSurgicalOperation::class, 'rf_SurgicalOperationID', 'SurgicalOperationID');
|
|
}
|
|
}
|