first commit
This commit is contained in:
35
app/Models/PropertyPhotoCategoryLabelMapping.php
Normal file
35
app/Models/PropertyPhotoCategoryLabelMapping.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class PropertyPhotoCategoryLabelMapping extends BaseModel
|
||||
{
|
||||
/**
|
||||
* The database table used by the model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $table = 'property_photo_category_label_mapping';
|
||||
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 = [];
|
||||
|
||||
public function photoCategory(){
|
||||
|
||||
|
||||
return $this->hasOne('App\Models\PropertyPhotoCategory','id', 'property_photo_category_id');
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user