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/topswtwmobile.komma.pro/app/views/emails/maintenance/received.blade.php
<?php

$cell = "font-size: 12px; font-family: Arial, sans-serif; line-height: 16px;";
$pAsCell = 'font-size: 12px; font-family: Arial, sans-serif; line-height: 16px; padding-bottom: 12px;';
$h2AsCell = 'font-size: 20px; font-family: Arial, sans-serif; line-height: 24px; padding-bottom: 20px; font-weight:bold; color: #00b0ea;';

?>
@section('emailImage')/images/static/maintenance/header_email_{{Shop::getLanguageService()->getCurrentLanguage()}}.jpg
@endsection

@extends('emails.layouts.tops')

@section('title')
    {{ Lang::get('pages/maintenance.email.title') }}
@endsection

@section('content')
    <table border="0" cellspacing="0" cellpadding="0">
        <tr>


            <td colspan="2" style="{{ $h2AsCell }}">
                <strong>
                    {{ Lang::get('emails/order/received.salutation', ['salutation' => Lang::get('form.salutation_' . $invoice_title), 'lastName' => $invoice_last_name]) }}
                </strong>
            </td>
        </tr>
        <tr>
            <td colspan="2" style="{{ $pAsCell }}" width="66%">
                {{ Lang::get('pages/maintenance.email.message', ['topsName'=> Lang::get('tops.name_without_bv')]) }}
            </td>


        </tr>

        <tr>
            <td colspan="2">

                <table border="0" cellspacing="0" cellpadding="0" width="100%">
                    <tr>
                        {{--invoice--}}
                        <td style="{{ $pAsCell }}" width="50%">
                            {{$invoice_street}}{{(empty($invoice_suffix)?' '.$invoice_suffix.' ':' ')}} {{$invoice_number}}<br />
                            {{$invoice_postal}} {{$invoice_city}}<br />
                            {{Lang::get('countries.'.$invoice_country)}}
                        </td>
                        {{--Shipping--}}
                        <td style="{{ $pAsCell }}" width="50%">
                            {{--<strong>{{ Lang::get('emails/order/received.content.shippingAddress') }}</strong><br/>--}}

                        </td>
                    </tr>
                    {{--Remarks--}}
                    @if(!empty($remarks))
                        <tr>
                            <td style="{{ $pAsCell }}" colspan="=2">
                                <strong>{{ Lang::get('emails/order/received.content.remarks') }}</strong><br/>
                                {{$remarks}}
                            </td>
                        </tr>
                    @endif
                </table>


            </td>
        </tr>

        <tr>
            <td style="{{ $pAsCell }}" valign="top">  {{ Lang::get('emails/order/received.content.orderNumber') }}</td>
            <td style="{{ $pAsCell }}" >{{ $order_number }}</td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}" valign="top">@lang('pages/maintenance.email.requested')</td>
            <td style="{{ $pAsCell }}" >{{ $maintenance_title }}</td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}" valign="top">@lang('pages/maintenance.email.duration')</td>
            <td style="{{ $pAsCell }}">+/- {{ $maintenance_duration  }} @lang('pages/maintenance.minutes')</td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}" valign="top">@lang('pages/maintenance.email.cost')</td>
            <td style="{{ $pAsCell }}">€ {{ $maintenance_price/100  }},@lang('pages/maintenance.email.cost_extra')</td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}" colspan="2">{{ $maintenance_description }}</td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}" colspan="3">{{ Lang::get('emails/order/received.content.ending') }}</td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}"
                colspan="3">{{ Lang::get('emails/global.signature', ['topsName' => Lang::get('tops.name_without_bv')]) }}</td>
        </tr>
    </table>
@endsection