Files
api-extranetwork/app/Models/PropertyAdditionalInfoKey.php
ExtraNetwork e5c4b6aa13 first commit
2026-05-12 17:04:54 +03:00

25 lines
529 B
PHP

<?php
namespace App\Models;
class PropertyAdditionalInfoKey extends BaseModel
{
protected $table = 'property_additional_info_key';
const CREATED_AT = 'created_at';
const UPDATED_AT = 'updated_at';
protected $dateFormat = 'U';
protected $appends = [];
protected $guarded = [];
protected $hidden = [];
public function propertyAdditionalLocale()
{
return $this->hasMany('App\Models\PropertyAdditionalInfoKeyLocale','additional_info_key_id','id');
}
}