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/layouts/tops.blade.php
<?php

$defaultStyle = "font-size: 12px; font-family: Arial, sans-serif; line-height: 16px;";

?>

@extends('emails.layouts.master')

@section('body')
    <table border="0" cellspacing="0" cellpadding="0" style="background-color: #f2f2f2; width:100%;" width="100%">
        <tr>
            <td align="center">
                <table border="0" cellspacing="0" cellpadding="0" style="width: 600px" width="600px">
                    <tr>
                        <td align="center" style="padding: 10px 40px;">
                            <span style="{{ $defaultStyle }} color: #b3b3b3;">@yield('title')</span>
                        </td>
                    </tr>
                    <tr>
                        <td style="background-color: #00b0ea; height: 60px; text-align: center;" align="center"
                            valign="middle" height="60px">
                            <img src="{{ isset($domain) ? $domain : url('/') }}/images/email/tops_logo_header.jpg"
                                 width="216px" height="40px" border="0"/>
                        </td>
                    </tr>
                    <tr>
                        <td style="background-color: #ffffff;" align="center">
                            @if($language = Shop::getLanguageService()->getCurrentLanguage())
                                <img src="{{ isset($domain) ? $domain : url('/') }}@yield('emailImage','/images/email/header_001_'.$language.'.jpg')"
                                     width="100%" height="auto" border="0"/>
                            @else
                                <img src="{{ isset($domain) ? $domain : url('/') }}/images/email/header_001.jpg"
                                     width="100%" height="auto" border="0"/>
                            @endif
                        </td>
                    </tr>
                    <tr>
                        <td style="color: #4d4d4d; background-color: #ffffff; padding: 40px;" align="left">
                        <span style="{{ $defaultStyle }}">
                            @yield('content')
                        </span>
                        </td>
                    </tr>
                    <tr>
                        <td style="background-color: #dddddd; padding: 40px;" align="left">
                        <span style="{{ $defaultStyle }}">
                            @include('emails.partials.footer')
                        </span>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
@endsection