@extends('layouts.adminapp') @section('title') {{ __('lng.MembersDetails') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_house_report', 'open') @section('active_house_report', 'active') @section('active_house_report_show', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.FundListDetails')}}

@php $Date = date("d-m-Y",strtotime($FundList->date)); @endphp @php $ExpireDate = date("d-m-Y",strtotime($FundList->expire)); @endphp
{{__('lng.Title')}} {{__('lng.Date')}} {{__('lng.ExpireDate')}} {{__('lng.TargetAmount')}} {{__('lng.CollectionAmount')}}
{{$FundList->title}} {{$Date}} {{$ExpireDate}} @currency($FundList->target_amount) @currency($FundList->collection_amount)

{{__('lng.MemberDetails')}}

@php $si=$CollectionTotalAmount=$PayedAmount=0; @endphp @foreach ($FundListDetails as $FundListDetail) @php $CollectionTotalAmount += $FundListDetail['CollectionAmount']; $PayedAmount += $FundListDetail['Payed']; @endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Name')}} {{__('lng.House')}} {{__('lng.Contact')}} {{__('lng.Status')}} {{__('lng.CollectionAmount')}} {{__('lng.Payed')}}
{{ ++$si }} {{ $FundListDetail['Name'] }} {{ $FundListDetail['HouseName'] }} {{ $FundListDetail['Contact'] }} {{ $FundListDetail['Status'] }} @amount($FundListDetail['CollectionAmount']) @amount($FundListDetail['Payed'])
{{ __('lng.Total') }} @currency($CollectionTotalAmount) @currency($PayedAmount)
{{ __('lng.Back') }}
@endsection