with('document')->usingSearchString(request('search')); if (!empty($this->ids)) { $model->whereIn('document_id', (array) $this->ids); } return $model->cursor(); } public function map($model): array { $document = $model->document; if (empty($document)) { return []; } $model->invoice_number = $document->document_number; return parent::map($model); } public function fields(): array { return [ 'invoice_number', 'code', 'name', 'amount', 'sort_order', ]; } }