File: D:/HostingSpaces/SBogers10/honger.komma.pro/resources/views/site/pages/testimonials.blade.php
@extends('site.master')
@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>
{{-- Add easteregg in testemonials--}}
@if($client['label'] === 'FarmFun')
<li class="easterEgg3-li" style="display: none">
@include('site.partials.eastereggs.easteregg_3')
</li>
@endif
@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