@extends('layouts.adminapp') @section('content')
@include('PrintHeader.header')

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

@php $si=0; @endphp @foreach($FundLists as $FundList) @php $Date = date("d-m-Y",strtotime($FundList->date)); @endphp @php $ExpireDate = date("d-m-Y",strtotime($FundList->expire)); @endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Title')}} {{__('lng.Date')}} {{__('lng.ExpireDate')}} {{__('lng.TargetAmount')}} {{__('lng.CollectionAmount')}} {{__('lng.Narration')}}
{{++$si}} {{$FundList->title}} {{$Date}} {{$ExpireDate}} @currency($FundList->target_amount) @currency($FundList->collection_amount) {{$FundList->narration}}
{{__('lng.Back')}}
@endsection