{{ __('Bill number') }}: {!! $order_number !!}
{{ __('Date') }}: {{ $created_at }}
{{ __('Print Date') }}: {{ Carbon\Carbon::now()->format('Y-m-d') }}

{{ __('Purchases bill') }}

{{ __('Seller') }}

@foreach($seller as $key => $val) {{ $key }}: {{ $val }}
@endforeach

{{ __('Buyer') }}

@foreach($customer as $key => $val) {{ $key }}: {{ $val }}
@endforeach
@foreach($items as $item) @endforeach
# {!! __('Item title') !!} {!! __('Quantity') !!} {!! __('Price') !!} {!! __('Total') !!} {!! __('Unit') !!}
{{ $loop->iteration }} {{ $item['product_name'] }} {{ $item['quantity'] }} {{ $item['unit_price'] }} {!! __('EGP') !!} {{ $item['row_sub_total'] }} {!! __('EGP') !!} {{ $item['unit'] }}
{!! __('Subtotal') !!} {{ @$sub_total }} {!! __('EGP') !!}
{{ __('Delivery') }} {{ @$delivery }} {!! __('EGP') !!}
{{ __('Order Total') }} {{ @$sub_total+@$delivery }} {!! __('EGP') !!}