@extends('layouts.app') @section('title', __('nav.catalogue')) @section('content')
@foreach ($categories as $category)
@foreach ($category->products->take(4) as $product) @endforeach
@endforeach
@endsection