@extends('layouts.print') @section('content')
{!! __('Date') !!} : {{ @$invoice->created_at }}
# |
{!! __('an item') !!} |
{!! __('Quantity') !!} |
---|---|---|
# |
{!! Optional($item->product)->title !!} |
{!! @$item->quantity !!} |
{{ __('Total') }}: |
{!! Optional($invoice->items)->sum('quantity') !!} |
{!! __('Printed on') !!} : {{ date("d-m-Y") }}