{{-- --}} @foreach ($bill['bill'] as $item) @endforeach
@if (\Acelle\Model\Setting::get('site_logo_small')) @else @endif @if (Acelle\Model\Setting::get('company_name')) @if(Acelle\Model\Setting::get('company_name'))
{{ Acelle\Model\Setting::get('company_name') }}
@endif @if(Acelle\Model\Setting::get('company_address'))
{!! Acelle\Model\Setting::get('company_address') !!}
@endif @endif

{{ trans('messages.invoice.header') }}

@if($bill['billing_first_name'])
{{ $bill['billing_first_name'] }} {{ $bill['billing_last_name'] }}
@endif @if($bill['billing_address'])
{{ $bill['billing_address'] }} @if($bill['billing_country']) {{ $bill['billing_country'] }} @endif
@endif @if($bill['billing_email'])
{{ $bill['billing_email'] }}
@endif @if($bill['billing_phone'])
{{ $bill['billing_phone'] }}
@endif
{{ trans('messages.invoice') }} #: {{ $bill['invoice_uid'] }}
{{ trans('messages.created_at') }}: {{ Auth::user()->customer->formatCurrentDateTime('date_full') }}
{{ trans('messages.due_date') }}: {{ $bill['due_date'] }}
{{ trans('messages.payment_method') }} Check #
Check 1000
{{ trans('messages.invoice.items') }} {{ trans('messages.invoice.price') }}

{{ $item['title'] }}

{!! $item['description'] !!}

{{ $item['price'] }}
{{ trans('messages.bill.subtotal') }}: {{ $bill['sub_total'] }}
{{ trans('messages.bill.tax') }}: {{ $bill['sub_total'] }}
{{ trans('messages.bill.total') }}: {{ $bill['total'] }}
{{ trans('messages.invoice.footer') }}