I want to use pagination for my page, so I added this at the Controller:
$suspendeds = Order::where('status', 'awaiting')->latest()->paginate(1); return view('profile.index', compact('suspendeds'));
And on the Blade:
{{ $suspendeds->links() }}
But it looks like this somehow:
So my question is, how can I properly load this pagination? Do I need to do change the CSS styles or this is due to Laravel stuff? If this issue can be solved within CSS, what are the name of classes?