i bougth metronic template.. <script data-navigate-once src="{{ asset('assets/js/custom/apps/user-management/users/list/table.js') }}"></script> i added this script in blade file.i used wire:navigate but pagination not show of table.after reload show pagination
Hi kalpa madusanka,
wire:navigate is quite tricky to handle. Maybe you need to reload the datatable after wire navigated.
You can try to reload the Yajra DataTable using the following code:
<script>
document.addEventListener('livewire:navigated', function () {
// Reload the Yajra DataTable instance
$('#myDataTable').DataTable().ajax.reload();
});
</script>