{{ trans('messages.subscription.logs_transactions') }}

{{ trans('messages.subscription.logs.intro') }}

@forelse ($subscription->getLogs() as $key => $log) @empty @endforelse
{{ trans('messages.subscription.log.created_at') }} {{ trans('messages.subscription.log.message') }}
{{ Acelle\Library\Tool::formatDateTime($log->created_at) }} {!! trans('cashier::messages.subscription.log.' . $log->type, $log->getData()) !!}
{{ trans('messages.subscription.logs.empty') }}
@forelse ($subscription->getTransactions() as $key => $invoice) @empty @endforelse
{{ trans('messages.invoice.created_at') }} {{ trans('messages.invoice.title') }} {{ trans('messages.invoice.amount') }} {{ trans('messages.invoice.status') }} {{ trans('messages.invoice.action') }}
{{ Acelle\Library\Tool::formatDate($invoice->created_at) }} {!! $invoice->title !!} @if ($invoice->description)
{!! $invoice->description !!}
@endif
{{ $invoice->amount }} {{ str_replace('_', ' ', $invoice->status) }}
{{ trans('messages.subscription.logs.empty') }}