Open lovecoding-git opened 4 years ago
Hello,
This livewire table is really awesome. If I am not wrong, you didn't add per page selection somewhere? Is it hard to add that? I know we can set public $per_page=x; for per page, but is it hard to add select box on front like other datatable? Thanks
public $per_page=x;
I created a select dropdown in the $header_view and added wire:model="{{ $per_page }}" property of the component.
$header_view
wire:model="{{ $per_page }}"
Styling was harder than linking it up
Hello,
This livewire table is really awesome. If I am not wrong, you didn't add per page selection somewhere? Is it hard to add that? I know we can set
public $per_page=x;
for per page, but is it hard to add select box on front like other datatable? Thanks