@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')
@include('PrintHeader.header')
{{__('lng.FundListDetails')}}
{{__('lng.Title')}} |
{{__('lng.Date')}} |
{{__('lng.ExpireDate')}} |
{{__('lng.TargetAmount')}} |
{{__('lng.CollectionAmount')}} |
@php $Date = date("d-m-Y",strtotime($FundList->date)); @endphp
@php $ExpireDate = date("d-m-Y",strtotime($FundList->expire)); @endphp
{{$FundList->title}} |
{{$Date}} |
{{$ExpireDate}} |
@currency($FundList->target_amount) |
@currency($FundList->collection_amount) |
{{__('lng.MemberDetails')}}
{{__('lng.SiNo')}} |
{{__('lng.Name')}} |
{{__('lng.House')}} |
{{__('lng.Contact')}} |
{{__('lng.Status')}} |
{{__('lng.CollectionAmount')}} |
{{__('lng.Payed')}} |
@php $si=$CollectionTotalAmount=$PayedAmount=0; @endphp
@foreach ($FundListDetails as $FundListDetail)
{{ ++$si }} |
{{ $FundListDetail['Name'] }} |
{{ $FundListDetail['HouseName'] }} |
{{ $FundListDetail['Contact'] }} |
{{ $FundListDetail['Status'] }}
|
@amount($FundListDetail['CollectionAmount']) |
@amount($FundListDetail['Payed']) |
@php
$CollectionTotalAmount += $FundListDetail['CollectionAmount'];
$PayedAmount += $FundListDetail['Payed'];
@endphp
@endforeach
{{ __('lng.Total') }} |
@currency($CollectionTotalAmount) |
@currency($PayedAmount) |
@endsection