builder; } return $this->builder->where(function ($query) use ($filter) { $query->where('recurring_invoices.custom_value1', 'like', '%'.$filter.'%') ->orWhere('recurring_invoices.custom_value2', 'like', '%'.$filter.'%') ->orWhere('recurring_invoices.custom_value3', 'like', '%'.$filter.'%') ->orWhere('recurring_invoices.custom_value4', 'like', '%'.$filter.'%'); }); } /** * Filter based on client status. * * Statuses we need to handle * - all * - active * - paused * - completed * * @param string client_status The invoice status as seen by the client * @return Builder */ public function client_status(string $value = '') :Builder { if (strlen($value) == 0) { return $this->builder; } $status_parameters = explode(',', $value); if (in_array('all', $status_parameters)) { return $this->builder; } $recurring_filters = []; if (in_array('active', $status_parameters)) $recurring_filters[] = RecurringInvoice::STATUS_ACTIVE; if (in_array('paused', $status_parameters)) $recurring_filters[] = RecurringInvoice::STATUS_PAUSED; if (in_array('completed', $status_parameters)) $recurring_filters[] = RecurringInvoice::STATUS_COMPLETED; return $this->builder->whereIn('status_id', $recurring_filters); } /** * Sorts the list based on $sort. * * @param string sort formatted as column|asc * @return Builder */ public function sort(string $sort) : Builder { $sort_col = explode('|', $sort); return $this->builder->orderBy($sort_col[0], $sort_col[1]); } /** * Filters the query by the users company ID. * * @return Illuminate\Database\Query\Builder */ public function entityFilter() { return $this->builder->company(); } }