@extends(get_view('index')) @section('title')@endsection @section('menu-active-homepage') current-menu-item @endsection @section('header') @endsection @section('content')
@foreach (Site::mainCategories() as $item)
{{ $item->content->name ?? translate('category') }}
@endforeach
@if ( Site::showroom()->count() > 0 )

{{ __('Our Picks For You') }}

@include(get_view('components.product.list'), ['products' => Site::showroom()])
@endif

{{ __('Our Services') }}

@php $i = 0; @endphp @foreach (Site::mainCategories() as $key => $item) @if ( $item->image != null && $item->content->content != null ) @php $i = $i + 1; @endphp @endif @endforeach
@endsection @section('footer') @endsection