@extends('layouts.home') @section('title', 'Bankkonto Transaktionen') @section('content') @include('partials/global-filters')
Manuelle Zuordnung

Datum: {{ Format::date($bankTransaction->date) }}

Valuta: {{ Format::date($bankTransaction->valuta_date) }}

Gegenkonto - Bank: {{ $bankTransaction->remote_bank_code }}

Kontoinhaber: {{ str_replace('|', '', e($bankTransaction->remote_account_holder_name)) }}

Betrag: {{ Format::currency($bankTransaction->amount) }}

Verwendungszweck: {{ str_replace('|', ' ', e($bankTransaction->purpose)) }}

{{ csrf_field() }}
@endsection