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/farmfun.komma.pro/resources/views/emails/admin/locationDayPlan.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;
    }

@endsection

@section('title')
    @lang('site/email.location_day_plan.subject') | {{ $date->format('d-m-Y') }} | Reserveringssysteem
@endsection

@section('content')

    <p>Hoi {{ $location->translation->name }},</p>

    <p>
        Hierbij een overzicht van de reservering voor <strong>{{ $date->format('d-m-Y') }}</strong>.
    </p>

    <p>&nbsp;</p>

    @foreach($reservations as $reservation)

        <p style="font-size: 15px; margin-bottom: 40px;">
            <strong style="display: inline-block; width: 200px; color: #000;">Reserveringsnummer:</strong>{{ $reservation->reservation_number }}<br/>
            <strong style="display: inline-block; width: 200px; color: #000;">Contactpersoon:</strong>{{ $reservation->first_name }} {{ $reservation->name_preposition }} {{ $reservation->last_name }} <br/>
            @if(!empty($reservation->company_name))<strong style="display: inline-block; width: 200px; color: #000;">Bedrijf:</strong>({{ $reservation->company_name }}) <br/>@endif
            <strong style="display: inline-block; width: 200px; color: #000;">Indicatie aantal pers.:</strong>{{ $reservation->items->max('quantity') }}<br/>
            <strong style="display: inline-block; width: 200px; color: #000;">Aanvang:</strong>{{ $reservation->items->min('start_time') }}<br/>
            <strong style="display: inline-block; width: 200px; color: #000;">Activiteiten:</strong>{{ $reservation->items->count() }}<br/>
            <strong style="display: inline-block; width: 200px; color: #000;">&nbsp;</strong><a target="_blank" href="{{ \Illuminate\Support\Facades\URL::temporarySignedRoute('reservation.receipt', today()->addDays(config('site.send_day_plan_days') + 2), ['reservation' => $reservation->id]) }}">Print orderbon</a>
        </p>

    @endforeach

@endsection


@section('layout')

    @include('emails.components.headerBar', ['headerBarTitle' => 'Dagoverzicht'])

    @include('emails.components.body')
    @include('emails.components.prefooter')
    @include('emails.components.footer', ['companyName' => '© ' . config('site.company.name') .' '. \Carbon\Carbon::now()->year])

@endsection