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