@forelse ($subscription->getLogs() as $key => $log)
@empty
@endforelse
{{ trans('messages.subscription.log.created_at') }} |
{{ trans('messages.subscription.log.message') }} |
{{ Auth::user()->customer->formatDateTime($log->created_at, 'datetime_full') }}
|
{!! $log->renderLog() !!}
|
{{ trans('messages.subscription.logs.empty') }}
|
@forelse ($subscription->transactions()->get() as $key => $transaction)
@empty
@endforelse
{{ trans('messages.created_at') }} |
{{ trans('messages.message') }} |
{{ trans('messages.transaction.amount') }} |
{{ trans('messages.transaction.method') }} |
{{ trans('messages.status') }} |
{{ Auth::user()->customer->formatDateTime($transaction->created_at, 'datetime_full') }}
|
{!! trans('messages.transaction_for_invoice', [
'uid' => $transaction->invoice->uid
]) !!}
|
{!! $transaction->invoice->formattedTotal() !!}
|
{{ $transaction->method }}
|
error ? 'title="'.strip_tags($transaction->error).'"' : '' !!} class="xtooltip label label-{{ $transaction->status }}" style="white-space: nowrap;">
{{ trans('messages.transaction.' . $transaction->status) }}
|
{{ trans('messages.subscription.logs.empty') }}
|
@forelse ($subscription->invoices()->orderBy('created_at', 'desc')->get() as $key => $invoice)
@php
$billInfo = $invoice->getBillingInfo();
@endphp
@empty
@endforelse
{{ trans('messages.invoice.created_at') }} |
{{ trans('messages.invoice.title') }} |
{{ trans('messages.invoice.amount') }} |
{{ trans('messages.invoice.status') }} |
{{ trans('messages.invoice.action') }} |
{{ Auth::user()->customer->formatDateTime($invoice->created_at, 'datetime_full') }}
|
{!! $billInfo['title'] !!}
{!! $billInfo['description'] !!}
|
{{ $billInfo['total'] }}
|
{{ trans('messages.invoice.status.' . $invoice->status) }}
|
@if ($invoice->isPaid())
download{{ trans('messages.download') }}
@endif
|
{{ trans('messages.subscription.logs.empty') }}
|