usingSearchString(request('search')); if (!empty($this->ids)) { $model->whereIn('bill_id', (array) $this->ids); } return $model->cursor(); } public function map($model): array { $bill = $model->bill; if (empty($bill)) { return []; } $model->bill_number = $bill->bill_number; $model->item_name = $model->item->name; return parent::map($model); } public function fields(): array { return [ 'bill_number', 'item_name', 'quantity', 'price', 'total', 'tax', ]; } }