@extends('storefront.layouts.main') @section('title', $groups->count() === 1 ? $groups->first()->name : 'Our Store') @section('content')

{{ $groups->count() === 1 ? $groups->first()->name : 'Our Store' }}

Reliable, fast, and secure hosting for your website.

{{-- Left Sidebar --}}
Categories
{{-- Products --}}
@forelse($groups as $group)

{{ $group->name }}

@if($group->description)

{{ $group->description }}

@endif
@foreach($group->products as $product) @php $firstPricing = $product->pricing->first(); @endphp
@endforeach
@empty

No products available at this time.

@endforelse
@endsection