mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:27:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('emails.master')
 | 
						|
 | 
						|
@section('markup')
 | 
						|
    @if ($account->emailMarkupEnabled())
 | 
						|
        @include('emails.partials.client_view_action')
 | 
						|
    @endif
 | 
						|
@stop
 | 
						|
 | 
						|
@section('content')
 | 
						|
    <tr>
 | 
						|
        <td bgcolor="#F4F5F5" style="border-collapse: collapse;"> </td>
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td style="border-collapse: collapse;">
 | 
						|
            <table cellpadding="10" cellspacing="0" border="0" bgcolor="{{ $account->primary_color ?: '#2E2B2B' }}" width="600" align="center" class="header"
 | 
						|
                style="border-bottom-width: 6px; border-bottom-color: {{ $account->primary_color ?: '#2E2B2B' }}; border-bottom-style: solid;">
 | 
						|
                <tr>
 | 
						|
                    <td class="logo" width="205" style="border-collapse: collapse; vertical-align: middle; line-height: 16px;" valign="middle">
 | 
						|
                        @include('emails.partials.account_logo')
 | 
						|
                    </td>
 | 
						|
                    <td width="183" style="border-collapse: collapse; vertical-align: middle; line-height: 16px;" valign="middle">
 | 
						|
                        <p class="left" style="line-height: 22px; margin: 3px 0 0; padding: 0;">
 | 
						|
                            @if ($invoice->due_date)
 | 
						|
                                <span style="font-size: 11px; color: #8f8d8e;">
 | 
						|
                                    @if ($invoice->isQuote())
 | 
						|
                                        {{ strtoupper(trans('texts.valid_until')) }} {{ $account->formatDate($invoice->due_date) }}
 | 
						|
                                    @else
 | 
						|
                                        @if ($account->hasCustomLabel('due_date'))
 | 
						|
                                            {{ $account->getLabel('due_date') }} {{ $account->formatDate($invoice->partial_due_date ?: $invoice->due_date) }}
 | 
						|
                                        @else
 | 
						|
                                            {{ utrans('texts.due_by', ['date' => $account->formatDate($invoice->partial_due_date ?: $invoice->due_date)]) }}
 | 
						|
                                        @endif
 | 
						|
                                    @endif
 | 
						|
                                </span><br />
 | 
						|
                            @endif
 | 
						|
                            <span style="font-size: 19px; color: #FFFFFF;">
 | 
						|
                                {{ trans("texts.{$entityType}") }} {{ $invoice->invoice_number }}
 | 
						|
                            </span>
 | 
						|
                        </p>
 | 
						|
                    </td>
 | 
						|
                    <td style="border-collapse: collapse; vertical-align: middle; line-height: 16px;" valign="middle">
 | 
						|
                        <p style="margin: 0; padding: 0;">
 | 
						|
                            @if (! isset($isRefund) || ! $isRefund)
 | 
						|
                                <span style="font-size: 12px; color: #8f8d8e;">
 | 
						|
                                    {{ strtoupper(trans('texts.' . $invoice->present()->balanceDueLabel)) }}:
 | 
						|
                                </span><br />
 | 
						|
                                <span class="total" style="font-size: 27px; color: #FFFFFF; margin-top: 5px;display: block;">
 | 
						|
                                    {{ $account->formatMoney($invoice->getRequestedAmount(), $client) }}
 | 
						|
                                </span>
 | 
						|
                            @endif
 | 
						|
                        </p>
 | 
						|
                    </td>
 | 
						|
                </tr>
 | 
						|
            </table>
 | 
						|
        </td>
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td class="content" style="border-collapse: collapse;">
 | 
						|
            <div style="font-size: 18px; margin: 42px 40px 42px; padding: 0; max-width: 520px;">{!! $body !!}</div>
 | 
						|
        </td>
 | 
						|
    </tr>
 | 
						|
@stop
 | 
						|
 | 
						|
@section('footer')
 | 
						|
    <p style="color: #A7A6A6; font-size: 13px; line-height: 18px; margin: 0 0 7px; padding: 0;">
 | 
						|
        @if (! $account->isPaid())
 | 
						|
            {!! trans('texts.ninja_email_footer', ['site' => link_to(NINJA_WEB_URL . '?utm_source=email_footer', APP_NAME)]) !!}
 | 
						|
        @else
 | 
						|
            {{ $account->present()->address }}
 | 
						|
            <br />
 | 
						|
            @if ($account->website)
 | 
						|
                <strong><a href="{{ $account->present()->website }}" style="color: #A7A6A6; text-decoration: none; font-weight: bold; font-size: 10px;">{{ $account->website }}</a></strong>
 | 
						|
            @endif
 | 
						|
        @endif
 | 
						|
    </p>
 | 
						|
@stop
 |