@extends('admin.admin_master') @section('admin')

Daily Invoice Report

logo


SAVY & SONS (PTY) LTD
VICTORIA, MAHE
Phone: 4325214

Daily Invoice Report {{ date('d-m-Y',strtotime($start_date)) }} - {{ date('d-m-Y',strtotime($end_date)) }}

@php $total_sum = '0'; @endphp @foreach($allData as $key => $item) @php $total_sum += $item['payment']['total_amount']; @endphp @endforeach
Sl Customer Name Invoice No Date Description Amount
{{ $key+1 }} {{ $item['payment']['customer']['name'] }} #{{ $item->invoice_no }} {{ date('d-m-Y',strtotime($item->date)) }} {{ $item->description }} {{ $item['payment']['total_amount'] }}
Grand Amount

SCR {{ $total_sum}}

@endsection