@extends('layouts.print') @section('content')

{!! __('Order processing bill') !!} #{!! $invoice->id !!}


{!! siteName() !!}

  • {!! __('Number of invoices') !!} :{!! @count($invoice->data['invoices']) !!}
  • {!! __('Number of items') !!} :{!! @$invoice->data['total'] !!}
  • {!! __('Date') !!} :{{ $invoice->created_at->format('d-m-Y') }}

{!! __('Order summary') !!}

@php $j = 1; $items = $invoice->data['products']; @endphp @foreach ($items as $key => $item) @endforeach
#
{!! __('an item') !!}
{!! __('Quantity') !!}
{{ $item[2] }} {{ $item[1] }}

{{ __('Total') }}:

{!! @$invoice->data['total'] !!}

{!! __('Printed on') !!} : {{ date("d-m-Y") }}


@endsection @section('script') @endsection