@extends('layouts.app') @section('title', 'Shop') @section('content')

All Products

@foreach($products as $product) @include('front.partials.product-card', ['product' => $product]) @endforeach
{{ $products->links() }}
@endsection