@if(request()->has('partial')) @endif @extends('admin.layouts.master') @section('title', 'Outstanding Report') @section('content') @if(!request()->has('partial'))
@endif
Retiler Name: {{$retailer->name}}
Locality Name: {{$locality->locality}}
@include('admin.includes.msg')
@if(!empty($usersOutstanding) && $usersOutstanding->count()>0) @foreach($usersOutstanding as $key=>$val) @endforeach @endif
Sl.No Customer Name Outstanding Amount Customer Type Action
{{$key+1}} {{ $val->name }} Rs {{$val->ros}} @php echo $customer_type[$val->customer_type]??''; @endphp view details
Total Outstanding: Rs {{ number_format($totalOutstanding, 2) }}
@if(!request()->has('partial'))
@endif @endsection