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/order/shipped_special.blade.php
<?php

$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;';

?>

@extends('emails.layouts.tops')

@section('title')
    {{ Lang::get('emails/order/shipped.'.$status.'.title',['orderNummer' => $order_number]) }}
@endsection

@section('content')

    <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
            <td style="{{ $h2AsCell }}">
                {{ Lang::get('emails/order/shipped.'.$status.'.title',['orderNummer' => $order_number]) }}
            </td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}">
                {{ Lang::get('emails/order/shipped.'.$status.'.content',['topsName' => Lang::get('tops.name_without_bv')]) }}
            </td>
        </tr>
        <tr>
            <td style="{{ $pAsCell }}">{{ Lang::get('emails/global.signature',['topsName' => Lang::get('tops.name_without_bv')]) }}</td>
        </tr>
    </table>

@endsection