31 lines
543 B
PHP
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 = [];
|
|
|
|
} |