@extends('layouts.adminapp') @section('title') {{ __('lng.FundListReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_fund_list_report', 'open') @section('active_fund_list_report', 'active') @section('content')

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

{{ __('lng.FundListReportTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@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') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $FundList->title }} {{ $Date }} {{ $ExpireDate }} @currency($FundList->target_amount) @currency($FundList->collection_amount) {{ $FundList->narration }}

{{ __('lng.Showing') }} {{ $FundLists->count() }} {{ __('lng.Items') }}

@endif
@endsection