@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(theme_url('/invoice.css')) !!} @endsection @section('content')
{!! __('Date') !!} : {{ $invoice->created_at->format('Y-m-d') }}
# |
{!! __('an item') !!} |
{!! __('Quantity') !!} |
---|---|---|
# |
{!! Optional($item->product)->title !!} |
{!! @$item->quantity !!} |
{{ __('Total') }}: |
{!! Optional($invoice->items)->sum('quantity') !!} |
{!! __('Printed on') !!} : {{ date("d-m-Y") }}