@lang('app.cart')

@lang('app.emptyCart')
id }}>

@if (count($products) == 0)
@lang('messages.addItem')
@lang('app.view') @lang('app.menu.products')
@else
@lang('app.order')#{{ is_null($lastOrder) ? 1 : $lastOrder }}

{{ mb_ucfirst(user()->name) }}

{{ mb_ucwords(user()->clientDetails->company_name) }}

@lang('app.lastLogin') @if (!is_null(user()->last_login)) {{ user()->last_login->timezone(company()->timezone)->translatedFormat(company()->date_format . ' ' . company()->time_format) }} @else -- @endif


@foreach ($products as $key => $item)
@if ($invoiceSetting->hsn_sac_code_show) @endif @if ($invoiceSetting->hsn_sac_code_show) @endif
@lang('app.description')@lang("app.hsnSac") @lang('modules.invoices.qty') @lang("modules.invoices.unitPrice") @lang('modules.invoices.tax') @lang('modules.invoices.amount')
{{ $item->hsn_sac_code }} {{ $item->unit->unit_type }}
{{ number_format((float) ($item->amount), 2, '.', '') }}
@endforeach

@lang('modules.invoices.subTotal') 0.00
@lang('modules.invoices.tax')
0.00
@lang('modules.invoices.total') 0.00
@lang('modules.invoices.placeOrder') @lang('app.view') @lang('app.menu.products') @lang('app.cancel')
@endif