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

31 lines
543 B
PHP

<?php
/**
* Created by PhpStorm.
* User: burhan
* Date: 01.05.2021
* Time: 10:10
*/
namespace App\Models;
class PropertyChannelContact extends BaseModel
{
protected $table = 'property_channel_contact';
protected $appends = [];
const CREATED_AT = 'created_at';
const UPDATED_AT = 'updated_at';
protected $dateFormat = 'U';
protected $guarded = [];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
}