32 lines
640 B
PHP
32 lines
640 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class PropertyCompetitorGroup extends BaseModel
|
|
{
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'property_competitor_group';
|
|
|
|
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 = [];
|
|
|
|
public function property()
|
|
{
|
|
return $this->belongsTo('App\Models\Property', 'property_id', 'id');
|
|
}
|
|
}
|