File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/order/received-shop.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;';
?>
@extends('emails.layouts.tops')
@section('title')
{{ Lang::get('emails/order/received.title') }}
@endsection
@section('content')
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" style="{{ $h2AsCell }}">
<strong>
Hallo {{$shop_owner}}
</strong>
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}" width="66%">
Er is een bestelling binnengekomen op {{Lang::get('tops.name_without_bv')}}.<br />
De bestelgevens kan je hieronder bekijken.
</td>
<td style="{{ $pAsCell }}" align="right" valign="top">
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}" width="66%">
</td>
<td style="{{ $pAsCell }}" align="right" valign="top">
{{ Lang::get('emails/order/received.content.orderNumber') }}<br/>
<span style="color: #00b0ea; font-weight: bold;">
<strong>{{ $order_number or '-' }}</strong>
</span>
</td>
</tr>
@if($order['customer']['username'] != $order['customer']['email'])
<tr>
<td style="{{ $pAsCell }}" colspan="2">
{{Lang::get('emails/order/received.content.activate_account',['link'=> HTML::link(Shop::getPageService()->page('createAccountFromOrder')->route.'?token='.$order['order_token'], Lang::get('emails/order/received.content.activate_account_link'), array('style' => 'color:#00b0ea;')) ])}}.
<br/>
<br/>
</td>
</tr>
@endif
<tr>
<td colspan="2">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
{{--invoice--}}
<td style="{{ $pAsCell }}" width="50%">
<strong>{{ Lang::get('emails/order/received.content.invoiceAddress') }}</strong><br/>
{{ $invoice_full_address }}
</td>
{{--Shipping--}}
<td style="{{ $pAsCell }}" width="50%">
<strong>{{ Lang::get('emails/order/received.content.shippingAddress') }}</strong><br/>
{{ $shipping_full_address }}
</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>
@include('emails/order/overview/orderOverview')
</td>
</tr>
</table>
@endsection