emreekiz1 Benim önerebileceğim tek kaynak https://laracasts.com/ Bu tür şeylere para harcayabiliyorsanız parayı buraya vereceksiniz. Başka önerebileceğim yer yok. Şu an bu konudaki bahsettiğiniz şey sadece şu:
products.blade.php
@foreach($products as $product)
<div>
{{ $product->name }}
</div>
@endforeach
{{ $products->links() }}
home.blade.php
<div>
@isset($products)
@include('products', compact('products'))
@endisset
<div>
HomeController
public function index()
{
$products = Product::simplePaginate();
return view('home', compact('products'))
}