Files
aso/app/Models/OLDLMS/Relationship.php
Server D3 Linksehat 013c57d00a update
2024-10-14 10:35:21 +07:00

26 lines
545 B
PHP
Executable File

<?php
namespace App\Models\OLDLMS;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Relationship extends Model
{
use HasFactory;
const CREATED_AT = 'dCreateOn';
const UPDATED_AT = 'dUpdateOn';
const DELETED_AT = 'dDeleteOn';
protected $connection = 'oldlms';
protected $primaryKey = 'nID';
protected $table = 'tm_hubungan_keluarga';
protected $fillable = [
'nID',
'sHubunganKeluarga'
];
}