@extends('backend.layouts.app') @section('content')

{{$page_title}}

@forelse ($list as $key=> $data) @empty @endforelse
# User Info Amount Info Added By Status Action
{{($key+1) + ($list->currentPage() - 1)*$list->perPage()}} Member Name: {{$data->user->name}}
Name: {{$data->name}}
Father / Husband Name: {{$data->husband_father_name}}
Contact Number: {{$data->contact_number}}
Address: {{$data->address}}
DMM Name: {{$data->dmm_name}}
DSM Name: {{$data->dsm_name}}
Requested Amount: ₹ {{$data->amount}}
Approved Amount: ₹ {{$data->approved_amount??'0'}}
File Charge: ₹ {{$data->filing_charge??'0'}}
Deposited Amount: ₹ {{$data->emi_sum_final_amount??'0'}}
Duration: {{$data->duration??'0'}} Month
Date: {{$data->created_at->format('d M Y h:i A')}}
{{$data->addedBy?$data->addedBy->name:"--"}}
Sakhi Name: {{$data->sakhi_name}}
Sakhi Phone: {{$data->sakhi_phone}}
@if ($data->status=="approved") {{ucfirst($data->status)}} @elseif ($data->status=="rejected") {{ucfirst($data->status)}} @else {{ucfirst($data->status)}} @endif @if ($data->status == 'pending') @endif @if ($data->status == 'approved') @endif

Opps!! There Are No Data Found..
{{ $list->links() }}
@endsection