itxp2008

Results 3 comments of itxp2008

> I have managed to install using the -W option so `composer require mediconesystems/livewire-datatables -W ` > > Hope that helps:) Yes it installs but is not able to load...

Hello. Can someone please help me out with this? ` public $model = Transaction::class, $with = 'transactable, transactable.id, transactable.name'; public function columns() { // return [ Column::name('id'), Column::name('transactable.id') ->filterable(), NumberColumn::name('amount')...

Update... After a lot, meaning a lot of variants tried I've managed to hack it My structure is App\Models\Client `public function transactions() { return $this->morphMany(Transaction::class, 'transactable'); }` App\Models\Agent `public function...