@extends('commons.layouts.admin') @section('content')

{{App\Language::trans('Listing Information')}}

@foreach($listing as $index => $row) @endforeach
# {{('Doc No.')}} {{('Ref No.')}} {{('House Room No.')}} {{('Customer Name')}} {{('Document Date')}} {{('Total Amount')}}
{{$index+1}}. {{$row['document_no']}} {{$row['reference_no']}} {{$row['house_name']}} {{$row['customer_name']}} {{$row['document_date']}} {{$row->setDouble($row['total_amount'])}}
@stop @section('script') @stop