28 lines
615 B
PHP
28 lines
615 B
PHP
<?php
|
|
|
|
namespace App\Models\OLDLMS;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class HealthcareCommission extends Model
|
|
{
|
|
use HasFactory, SoftDeletes;
|
|
|
|
const CREATED_AT = 'dCreateOn';
|
|
const UPDATED_AT = 'dUpdateOn';
|
|
const DELETED_AT = 'dDeleteOn';
|
|
|
|
protected $connection = 'oldlms';
|
|
|
|
protected $table = 'tx_healthcare_commission';
|
|
|
|
protected $primaryKey = 'nID';
|
|
|
|
public function healthcare()
|
|
{
|
|
return $this->belongsTo(Healthcare::class, 'nIDHealthcare', 'nID');
|
|
}
|
|
}
|