File: D:/HostingSpaces/Eurotools/euro-tools.nl/resources/views/shop/pages/thanks.blade.php
@extends('site.master')
{{--@section('title', $page->translation->title)--}}
{{--@section('meta_description', $productTranslation->meta_description)--}}
@section('content')
<div class="grid-row thanksContent">
<div class="breadcrumb">
<a href="/">Eurotools</a>
<span> > </span>
<a href="/{{route('checkout')}}">{{$page->translation->name}}</a>
</div>
<div class="grid-col left">
@include('site.svg.send_succesful')
</div>
<div class="grid-col right">
<h1>{{ $page->translation->content->typeName}}</h1>
{!! $page->translation->content->description !!}
<a href="{{$page->translation->content->link}}" class="button blue arrow">
{{$page->translation->content->link_text}}
</a>
</div>
</div>
<div class="grid-row related-products-header">
<h3 class="grid-col">@lang('site/global.interesting_products')</h3>
<a class="button arrow" href="/{{$links->products->route}}">@lang('site/global.allProducts')</a>
</div>
<div class="grid-row related-products">
@include('shop.partials.itemsGridLoop', ['products' => $otherProducts, 'parentlink' => $links->products->route])
</div>
<div class="btw-message">
<p>{!! __('site/global.BTWDisclaimer') !!}</p>
</div>
@endsection