@stack('transferred_at_input_start')
{{ trans('general.date') }}
|
|
@stack('transferred_at_input_end')
@stack('payment_method_input_start')
{{ trans_choice('general.payment_methods', 1) }}
|
@if (! empty($payment_methods[$transfer->expense_transaction->payment_method]))
{!! $payment_methods[$transfer->expense_transaction->payment_method] !!}
@else
@endif
|
@stack('payment_method_input_end')
@stack('reference_input_start')
{{ trans('general.reference') }}
|
{{ $transfer->expense_transaction->reference }}
|
@stack('reference_input_end')
@stack('description_input_start')
{{ trans('general.description') }}
|
{{ $transfer->expense_transaction->description }}
|
@stack('description_input_end')
@stack('amount_input_start')
{{-- The reason for adding the amount part here is because the amount style is broken in the view. --}}
@stack('amount_input_end')
|
@stack('details_end')