Level 5
MY BAD! seems the issue was with me using Livewire... forgot to add the following.
protected $paginationTheme = 'bootstrap';
Not sure what am i missing here but have tried both laravel ui and fortify as well with bootstrap 4 scaffolding everything seems to work (as per what i need) but unfortunately Pagination did not. At least based on what's in Laravel 8 doc.
use Illuminate\Pagination\Paginator;
public function boot()
{
Paginator::useBootstrap();
}
I see the tailwind classes on view source. Any idea how to fix this???
MY BAD! seems the issue was with me using Livewire... forgot to add the following.
protected $paginationTheme = 'bootstrap';
Please or to participate in this conversation.