{{ __('Daily Income Report') }}

{{ __('Date') }}: {{ $date }}
@php $net = $sales - $purchases - $expenses; @endphp
{{ __('Description') }} {{ __('Amount') }}
{{ __('Total Sales') }} {{ number_format($sales, 2) }}
{{ __('Total Purchases') }} {{ number_format($purchases, 2) }}
{{ __('Total Expenses') }} {{ number_format($expenses, 2) }}
{{ __('Net Income') }} {{ number_format($net, 2) }}
@if($customers->count())

{{ __('Outstanding Customer Dues') }}

@foreach($customers as $i => $customer) @endforeach
# {{ __('Customer') }} {{ __('Phone') }} {{ __('Due Amount') }}
{{ $i + 1 }} {{ $customer->name }} {{ $customer->phone }} {{ number_format($customer->current_due, 2) }}
@endif
{{ __('Generated on') }} {{ now()->format('Y-m-d H:i') }}