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/honger7.komma.pro/resources/views/site/pages/testimonials.blade.php
@extends('site.master')

@section('title', 'Referenties | ' . Lang::get('site/meta.title'))

@section('content')

    {{-- Intro header --}}
    @include('site.partials.header',['key' => 'testimonials'])

    {{-- Show client logos --}}
    <section id="arrow-target" class="testimonial-logo-grid contained-layout">

        <ul class="clients">

            @foreach(Config::get('site.clients') as $client)
                <li>
                    <img src="/img/komma/clientLogos/{{ $client['svg'] }}" alt="{{ $client['label'] }}"/>
                </li>
            @endforeach

        </ul>

        {{-- Loop through all testimonials --}}
        @foreach(Config::get('site.testimonials') as $key => $testimonial)

            {{-- Testimonial --}}
            @include('site.partials.testimonials.testimonial',[
                'testimonial' => $testimonial
            ])

        @endforeach

    </section>

@endsection

@section('footer_button')
    @include('site.partials.footerButton',[
            'label' => "Contact opnemen",
            'href' => "/contact"])
@endsection