HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/views/templates/products_index.blade.php
@extends('master')

@section('title', !empty($page->translation->meta_title) ? $page->translation->meta_title : config('site.company.name'))
@section('meta_description', $page->translation->meta_description)

@section('content')
    <div class="l-body  l-body--rounded-tr">
        <div class="l-block  l-contain  u-spacing-pt5">
            <div class="u-spacing-pb5">
                @include('components.breadcrumb')
            </div>

            @if(isset($components) && $components->has('main'))
                @include('organisms.intro', [
                    'introDescription' => $components->get('main')->text,
                ])
            @endif
        </div>

        <div class="l-block  l-contain">
            @include('organisms.productGrid', ['products' => $composedProducts])
        </div>

        <div class="l-block  l-contain">
            @include('organisms.cta', [
                'ctaTitle' => __('site/global.cta.title'),
                'ctaButtonText1' => __('site/global.cta.buttonText1'),
                'ctaButtonText2' => __('site/global.cta.buttonText2'),
            ])
        </div>

    </div>
@endsection