File: D:/HostingSpaces/blijegasten/blijegasten.be/resources/views/emails/shop/orderUpdateStaff.blade.php
@php /** @var \App\Komma\Shop\Orders\Models\Order $order **/ @endphp
@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-deposit {
margin-left: 10px;
font-size: 20px;
}
.c-deposit small {
margin-right: 5px;
}
@endsection
@section('title')
{{ $subject }}
@endsection
@section('content')
<p>@lang('shop/orders.mail.greeting') Blije gasten,</p>
<p>@lang('shop/orders.mail.'.$order->status.'.staff.body', ['order_number' => $order->order_number])</p>
<br/>
@if(!empty($order->invoice_vat_number) && isset($vies))
@if(!$vies->vies_valid)
<strong>@lang('shop/checkout.vies_invalid')</strong>
@elseif($vies->vies_result->getName() != strtoupper($order->invoice_company))
<strong>@lang('shop/checkout.vies_message_heading')</strong><br/>
@lang('shop/checkout.vies_not_similar', ['viesCompany' => $vies->vies_result->getName()])
@endif
<br/>
<br/>
<br/>
@endif
@include('emails.components.orderDetails')
<br/>
@include('emails.components.orderProducts', ['orderedProducts' => $order->orderedProducts])
{{--@include('shop.partials.orders.orderedProductgroups', ['orderedGroups' => $order->orderedGroups])--}}
{{--@include('shop.partials.orders.orderedProductcomposites', ['orderedProductComposites' => $order->orderedProductComposites])--}}
@includeWhen($showReceipt, 'emails.components.orderSummary')
<br/>
@if(isset($button_text) && isset($button_url))
@include('emails.components.button', ['buttonLink' => $button_url, 'buttonText' => __('shop/orders.mail.'.$order->status.'.customer.button_text') ])
@endif
<br/>
<br/>
@endsection
@section('layout')
@include('emails.components.logo')
@include('emails.components.headerBar', ['headerBarTitle' => $subject])
@include('emails.components.body')
@include('emails.components.footer', ['footerText' => '© ' . config('site.company.name')])
@endsection