{{ __('app.customer') }}{{ $sale->walk_in_customer_name ?: ($sale->customer->name ?? '-') }}
{{ __('app.gregorian_date') }}{{ $sale->sale_date?->format('Y-m-d') }}
{{ __('app.shamsi_date') }}{{ $sale->sale_date_shamsi ?: '-' }}
{{ __('app.invoice_type') }}{{ __('app.'.($sale->invoice_entry_mode ?: 'wizard')) }}
{{ __('app.total') }}{{ number_format($sale->total,2) }}
{{ __('app.paid') }}{{ number_format($sale->paid,2) }}
{{ __('app.due') }}{{ number_format($sale->due,2) }}
@foreach($sale->items as $item)@endforeach
IMEI{{ __('app.mobile') }}{{ __('app.price') }}
{{ $item->mobile->imei_1 ?? '-' }}{{ $item->mobile?->title() }}{{ number_format($item->total,2) }}