File: D:/HostingSpaces/SBogers10/farmfun.komma.pro/resources/views/emails/admin/sendProgram.blade.php
@extends('emails.master')
@section('style')
.c-table {
border-spacing: 0;
}
.c-table td,
.c-table th {
font-size: 14px;
}
.c-table tbody tr:first-child .c-table-item {
padding: 10px 0 5px;
}
.c-table tbody tr:last-child .c-table-item,
.c-table tbody tr.c-table-row--padding-bottom td
{
padding: 5px 0 10px;
}
.c-table--summary td,
.c-table-item {
padding: 5px 0;
}
.c-table-heading-item {
padding-bottom: 5px;
border-bottom: 1px solid #74787E;
}
.c-table th,
.c-table strong{
color: #2F3133;
}
.c-table-row--btw th,
.c-table-row--btw td{
color: #9ea0a2;
}
.c-table--summary tr.c-table-row--divider td{
padding: 10px 0 5px;
border-top: 1px solid #74787E;
}
.c-table--summary td {
text-align: right;
}
.c-table-item__sub, .c-table-item__sub strong {
color: #9ea0a2;
}
.c-deposit {
margin-left: 10px;
font-size: 20px;
}
.c-deposit small {
margin-right: 5px;
}
ul li {
font-size: 13px;
}
@endsection
@section('title')
@lang('site/email.send_program.subject')
@endsection
@php
$faqUrl = 'https://farmfun.be/veelgestelde-vragen';
@endphp
@section('content')
<p>Hoi {{ config('site.company.name') }},</p>
<p>
De volgende offerte is via de website gegenereerd.
</p>
<br/>
<h2 style="margin-bottom: 0;">Teamleader</h2>
@if($savedToTeamleader)
<p>Gegevens zijn ingeschoten als nieuwe deal.</p>
@else
<p>
Gegevens zijn <strong>NIET</strong> ingeschoten.
<br/>
<br/>
Reden(en):<br/>
@foreach($messages as $message)
{{ $message }}<br/>
@endforeach
</p>
@endif
<p> </p>
<p style="font-size: 15px;">
<strong style="display: inline-block; width: 200px; color: #000;">Verzonden naar:</strong> {{ $mailedTo }}<br/>
<br/>
<strong style="display: inline-block; width: 200px; color: #000;">Event:</strong> {{ $order->date->format('d-m-Y') }}<br/>
<strong style="display: inline-block; width: 200px; color: #000;">Locatie:</strong> {{ $location->translation->name }} @if(isset($location->country) && !empty($location->country))({{$location->country}})@endif<br/>
</p>
<div style="margin-top: 40px; margin-bottom: 40px;">
<h2 style="margin-bottom: 20px;">Overzicht</h2>
@include('emails.components.orderLines')
@include('emails.components.orderSummary')
</div>
<a href="{{$cartLink}}" style="display: inline-block;background-color:#BCCF27;color: white;padding: 12px 20px;border-radius: 8px;text-decoration: none;margin-bottom:10px;">Bekijk programma</a>
@endsection
@section('layout')
@include('emails.components.headerBar', ['headerBarTitle' => __('site/email.send_program.subject')])
@include('emails.components.body')
@include('emails.components.prefooter')
@include('emails.components.footer', ['companyName' => '© ' . config('site.company.name') .' '. \Carbon\Carbon::now()->year])
@endsection