@extends('layouts.shop')
@section('content')
{{-- Full Width Hero Section --}}
{{ $section->title }}
{!! $section->description !!}
@if($section->thumbnail)
@endif
{!! $section->description !!}
@if($section->cats->isNotEmpty())
@foreach($section->cats as $cat)
@if($cat->thumbnail)
@endif
{{ $cat->name }}
@endforeach
@endif
@endsection