@extends('_version_01.commons.layouts.admin') @section('content')
@php $grant_total = 0; @endphp @if(count($listing) > 0) @foreach($listing as $index => $row) @php $grant_total +=$row->setDouble($row['total_amount']); @endphp @endforeach @else @endif
# {{('Doc No.')}} {{('Ref No.')}} {{('Payment Gateway Ref No.')}} {{('Unit Room No.')}} {{('Customer Name')}} {{('Document Date')}} {{('Total Amount')}}
{{$index+1}}. {{$row['document_no']}} {{$row['reference_no']}} {{$row['payment_gateway_reference_no']}} {{$row['house_name']}} {{$row['customer_name']}} {{$row['document_date']}} {{$row->setDouble($row['total_amount'])}}
{{ ('Total :')}} {{$row->setDouble($grant_total)}}
No record found.
@stop @section('script') @stop