Aghits Nidallah

Results 29 comments of Aghits Nidallah

How about adding `sticky` option for `` and the first column of each row? There are some cases where both could be used in a large data table.

Have you tried `dark:!prose-invert`? It might solves the issue.

Yes, it is possible to enable dark mode. But within the package itself, natively, it is not possible. You have to at least publish the configuration file and edit the...

This is the issue with your PHP extension. The error itself giving the instruction clear enough to enable the php-gd.

I believe it is because you're missing the "key". The Livewire [documentation](https://laravel-livewire.com/docs/2.x/nesting-components#keyed-components) said > Similar to VueJs, if you render a component inside a loop, Livewire has no way of...

Refer to [the Relation example](https://livewire-datatables.com/relation). So, in the columns method, you can write `Column::callback(['roles.name'], closure())`, and at the bottom of the file (or anywhere) add the `getRolesProperty()` method. Example code:...

Refer to [the Relation example](https://livewire-datatables.com/relation). First, you have to make a method called `getOptionsProperty()` where it returns the `Options::all()`. Then in the column definition, write `Column::name('options.id:count')`. Complete example: ```php public...

What went wrong? I haven't used this package long enough. Do you have some code to reproduce the issue?

Did you have any repository on how to reproduce this bug? I tried to reproduce it on my machine and somehow it just works as intended. ```php

Hi, thanks for the reproducing steps, I'll try to fix the issue today.