belongsTo('App\Models\Shop\PriceList'); } public function scopeByPriceList($query, $id) { return $query->where('price_list_id', $id); } public function scopeByQuantity($query, $quantity) { return $query->orderBy('quantity', 'desc')->where('quantity', '<', $quantity)->first(); } }