@lang('modules.dashboard.recentSubscriptionCharges')

@if($latestInvoices->isEmpty())

@lang('messages.noInvoiceFound')

@else
@foreach($latestInvoices as $invoice) @endforeach
@lang('modules.billing.society') @lang('modules.billing.packageDetails') @lang('modules.billing.billingCycle') @lang('modules.billing.amount')
{{ $invoice->society->name }} {{ $invoice->package->package_name }}
@if ($invoice->package->package_type->value == 'trial') @lang('modules.package.trial') @elseif($invoice->package->package_type->value == 'lifetime') @lang('modules.package.lifetime') @endif
{{ ucfirst($invoice->package_type) }} {{ $invoice->total ? $invoice->currency->currency_symbol . $invoice->total : '-' }}
@endif