{{ $plan?->name ?? __('No plan') }}
{{ $plan?->formattedPrice() }} @if ($plan && ! $plan->isFree()) {{ $plan->periodLabel() }} @endif
{{ __('This plan stays active until :date and will not renew.', [ 'date' => $subscription->ends_at?->format('j F Y'), ]) }}
{{ __('Renews on :date.', ['date' => $subscription->ends_at->format('j F Y')]) }}
@endif| {{ __('Reference') }} | {{ __('For') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|
| {{ $payment->created_at->format('j M Y') }} | @if ($payment->payable instanceof \App\Models\Subscription) {{ $payment->payable->plan?->name }} @elseif ($payment->payable instanceof \App\Models\ListingPromotion) {{ $payment->payable->type->label() }} @else {{ __('Marketplace services') }} @endif | {{ $payment->formattedAmount() }} |
|
@if ($payment->status->isOpen()) {{ __('Finish paying') }} @elseif ($payment->invoice) {{ __('Invoice') }} @endif |