Files
aso/app/Models/Family.php
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

23 lines
395 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Family extends Model
{
use HasFactory;
protected $table = 'family_relations';
protected $fillable = [
'owner_id',
'relation_with_owner',
'person_id',
'created_by',
'updated_by',
'deleted_by',
];
}