company->db); } public function render() { $query = Credit::query() ->where('client_id', auth('contact')->user()->client->id) ->where('company_id', $this->company->id) ->where('status_id', '<>', Credit::STATUS_DRAFT) ->where(function ($query){ $query->whereDate('due_date', '<=', now()) ->orWhereNull('due_date'); }) ->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc') ->paginate($this->per_page); return render('components.livewire.credits-table', [ 'credits' => $query, ]); } }