[Laravel8.16.0] bootstrapでpaginationが崩れて表示される時

controller

public function show(){
        $products = DB::table('products')->Paginate(4);
        return view('admin.show', compact('products'));
    }

views

@foreach($products as $product)
	<p>{{ $product->name}}</p>
	@endforeach

	{{-- Pagination --}}
	<div class="d-flex justify-content-center">
            {!! $products->links() !!}
    </div>

は? 何これ?

app/Providers/AppServiceProvider.php

use Illuminate\Pagination\Paginator;
    public function boot()
    {
        //
        Paginator::useBootstrap();
    }

Ok, I think we got keep going men!