36 lines
757 B
PHP
36 lines
757 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class PropertyContentCategory extends BaseModel
|
|
{
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'property_content_category';
|
|
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 = [];
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function propertyContentCategoryLocale()
|
|
{
|
|
return $this->hasMany('App\Models\PropertyContentCategoryLocale','content_category_id', 'id');
|
|
}
|
|
}
|