@extends('layouts.webpage.main_two') @section('page-title', 'Products') @section('content')

{{ $hero_product->title ?? 'Products'}}

{{-- === Tabs (Dynamic) === --}} {{-- === Tab Contents (Dynamic) === --}}
@foreach ($categories as $index => $category)
@foreach ($products->where('category', $category) as $product)
{{ $product->title }}

{{ $product->title }}

{{ $product->description }}

@endforeach
@endforeach
@endsection