File: D:/HostingSpaces/SBogers68/ouddorp-duin.nl/app/views/layouts/partials/home/ctaPictureHome.blade.php
<div class="grid-row cta-picture-block">
<div class="grid-col col-12">
{{-- If sentence is specified in the code --}}
@if(isset($sentence))
<div class="cta-picture-content-wrapper cta-picture-home">
<h2 class="cta-picture-sentence">{{ $sentence }}</h2>
<a href="/overnachten" class="cta-picture-button cta-picture-sleep">@lang('translations.sleep')</a>
<a href="/spelen" class="cta-picture-button cta-picture-play">@lang('translations.play')</a>
<a href="/theater" class="cta-picture-button cta-picture-theater">@lang('translations.theater')</a>
<a href="/shoppen" class="cta-picture-button cta-picture-shop">@lang('translations.shop')</a>
@if(isset($links->do))
<a href="/{{ $links->do->route }}" class="cta-picture-button cta-picture-do">@lang('translations.do')</a>
@endif
<a href="/eten" class="cta-picture-button cta-picture-eat">@lang('translations.eat')</a>
</div>
@else
<p>Fill in a sentence</p>
@endif
</div>
</div>