@if (!$hidePaidAt)
{{ trans($textPaidAt) }}:
@endif
@if (!$hideAccount)
{{ trans_choice($textAccount, 1) }}:
@endif
@if (!$hideCategory)
{{ trans_choice($textCategory, 1) }}:
@endif
@if (!$hidePaymentMethods)
{{ trans_choice($textPaymentMethods, 1) }}:
@endif
@if (!$hideReference)
{{ trans($textReference) }}:
@endif
@if (!$hideDescription)
{{ trans($textDescription) }}:
@endif
@if (!$hidePaidAt)
@date($transaction->paid_at)
@endif
@if (!$hideAccount)
{{ $transaction->account->name }}
@endif
@if (!$hideCategory)
{{ $transaction->category->name }}
@endif
@if (!$hidePaymentMethods)
{{ $payment_methods[$transaction->payment_method] }}
@endif
@if (!$hideReference)
{{ $transaction->reference }}
@endif
@if (!$hideDescription)
{!! nl2br($transaction->description) !!}
@endif