42 lines
881 B
PHP
42 lines
881 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class PlaceCategoryFieldOptionFieldMapping extends BaseModel
|
|
{
|
|
/**
|
|
* The database table used by the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'place_category_field_option_field_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 = [];
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
|
|
|
|
public function placeCategoryFieldOption()
|
|
{
|
|
return $this->hasOne('App\Models\PlaceCategoryFieldOption','id', 'field_option_id')
|
|
->select("id", "name", "language_key", "status")
|
|
->where('status','=',1) ;
|
|
|
|
}
|
|
|
|
}
|