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/Eurotools/euro-tools.nl/resources/views/emails/admin/customersVatChecked.blade.php
@extends('emails.master')

@section('sub-header')
    @lang('shop/notifications.customers_vat_checked.subject')
@endsection

@section('message')

    @lang('shop/notifications.customers_vat_checked.mail_greeting', [
         'name' => config('business.company_name'),
          ])
    <br/>
    <br/>

    {!! __('shop/notifications.customers_vat_checked.mail_intro') !!}
    <br/>
    <br/>
    <br/>


    {{-- Request table --}}
    <table border="0" cellpadding="0" cellspacing="0" width="516">
        <tbody>
        <tr>
            <td>
                <table border="0" cellpadding="0" cellspacing="0" width="516">
                    <thead>
                    <tr>
                        <th width="150" style="text-align: left;"><h3>@lang('shop/notifications.customers_vat_checked.name')</h3></th>
                        <th width="150" style="text-align: left;"><h3>@lang('shop/notifications.customers_vat_checked.company')</h3></th>
                        <th width="60" style="text-align: right;"><h3 style="text-align: right;">@lang('shop/notifications.customers_vat_checked.is_valid')</h3></th>
                    </tr>
                    </thead>
                    <tbody>
                        @foreach($customers as $customer)
                            <tr>
                                <td style="padding: 10px 0; border-top: 1px solid #e0e0e0; font-size: 15px;" width="150">
                                    {{$customer->first_name}} {{$customer->last_name}}
                                </td>
                                <td style="padding: 10px 0; border-top: 1px solid #e0e0e0; font-size: 15px;" width="150">
                                    {{$customer->company_name}}
                                </td>
                                <td style="padding: 10px 0; border-top: 1px solid #e0e0e0; font-size: 15px; text-align: right" width="60">
                                    @if($customer->company_vat_number_validated == 1)
                                        @lang('shop/notifications.customers_vat_checked.valid')
                                    @else
                                        @lang('shop/notifications.customers_vat_checked.not_valid_yet')
                                    @endif
                                </td>
                            </tr>
                        @endforeach
                    </tbody>
                </table>
            </td>
        </tr>
        </tbody>
    </table>

    <br/>

    <br/>

    {!! __('shop/notifications.footer') !!}

@endsection