belongsTo('App\Models\Shop\SaleChannel'); } public function tariff_unity() { return $this->belongsTo('App\Models\Shop\TariffUnity'); } public function price_lists() { return $this->hasMany('App\Models\Shop\PriceList'); } public function scopeBySaleChanel($query, $id) { return $query->where($this->table . '.sale_channel_id', $id); } public function scopeByStatus($query, $id) { return $query->where($this->table . '.status_id', $id); } }