where('client_id', auth('contact')->user()->client->id) ->whereNotNull('subscription_id') ->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc') ->paginate($this->per_page); return render('components.livewire.subscriptions-recurring-invoices-table', [ 'recurring_invoices' => $query, ]); } }