@extends('layouts.memberapp') @section('content')

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

@currency($HouseSubscription->subscriptionpackage->amount ?? 0)

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

@currency(abs($AdBal)) @if ($AdBal >= 0)

{{ __('lng.PendingAmount') }}
@else
{{ __('lng.AdvanceAmount') }}
@endif

@currency($TotalDonation)

{{ __('lng.Donation') }}
{{--

000

{{ __('lng.Applications') }}
--}}

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

@foreach ($SubscriptionsReports as $SubscriptionsReport) @endforeach
{{ __('lng.Date') }} {{ __('lng.Amount') }}
{{ date('F - d - Y', strtotime($SubscriptionsReport->date)) }} @currency($SubscriptionsReport->amount)

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

{{-- --}} @foreach ($Donations as $Donation) {{-- --}} @endforeach
{{ __('lng.Name') }}{{ __('lng.Date') }} {{ __('lng.Amount') }}
{{$Donation->member->name}}{{ date('F - d - Y', strtotime($Donation->date)) }} @currency($Donation->amount)
@endsection