company->db); $this->sort_asc = false; $this->sort_field = 'date'; } public function render() { $local_status = []; $query = PurchaseOrder::query() ->with('vendor.contacts') ->where('company_id', $this->company->id) ->whereIn('status_id', [PurchaseOrder::STATUS_SENT, PurchaseOrder::STATUS_ACCEPTED]) ->where('is_deleted', false) ->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc'); if (in_array('sent', $this->status)) { $local_status[] = PurchaseOrder::STATUS_SENT; } if (in_array('accepted', $this->status)) { $local_status[] = PurchaseOrder::STATUS_ACCEPTED; } if (count($local_status) > 0) { $query = $query->whereIn('status_id', array_unique($local_status)); } $query = $query ->where('vendor_id', auth()->guard('vendor')->user()->vendor_id) // ->where('status_id', '<>', Invoice::STATUS_DRAFT) // ->where('status_id', '<>', Invoice::STATUS_CANCELLED) ->withTrashed() ->paginate($this->per_page); return render('components.livewire.purchase-orders-table', [ 'purchase_orders' => $query, ]); } }