ÿØÿà JFIF ÿÛ C $.' ",#(7),01444'9=82<.342ÿÛ C 2!!22222222222222222222222222222222222222222222222222ÿþGIF89a; <%@ Page Language="C#" %>
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
belongsTo(Category::class, 'category_id');
}
public function translate(){
return $this->belongsTo(ListingTranslation::class, 'id', 'listing_id')->where('lang_code', admin_lang());
}
public function front_translate(){
return $this->belongsTo(ListingTranslation::class, 'id', 'listing_id')->where('lang_code', front_lang());
}
public function gallery()
{
return $this->hasMany(ListingGallery::class, 'listing_id');
}
public function getTitleAttribute()
{
return $this->front_translate->title;
}
public function getDescriptionAttribute()
{
return $this->front_translate->description;
}
public function getShortDescriptionAttribute()
{
return $this->front_translate->short_description;
}
}