first commit
This commit is contained in:
31
app/Models/PropertyChannelContact.php
Normal file
31
app/Models/PropertyChannelContact.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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 = [];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user