@extends('layouts.layout-2') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if (session('info'))
{{ session('info') }}
@endif
 DATEV Export - Steuerberater
@if ($current_export)
Aktueller Export: {!! $current_export->status_badge !!} — {{ $current_export->total_lines }} Zeilen ({{ $current_export->invoice_count }} RE, {{ $current_export->credit_count }} GS, {{ $current_export->cancellation_count }} ST) — {{ $current_export->created_at->format('d.m.Y H:i') }} @if ($current_export->warning_count > 0) {{ $current_export->warning_count }} Warnungen @endif
CSV @if (!$current_export->isLocked())
@csrf
@endif
@endif
@if ($current_export)
Buchungszeilen (Export {{ $current_export->period_label }})
# Typ Umsatz S/H Konto Gegenkonto BU Belegdatum Belegfeld 1 Buchungstext USt-ID
@endif @if ($recent_exports->count() > 0)
Export-Historie
@foreach ($recent_exports as $exp) @endforeach
Periode Status Zeilen Umsatz Provisionen Erstellt Aktionen
{{ $exp->period_label }} {!! $exp->status_badge !!} {{ $exp->total_lines }} {{ number_format($exp->total_revenue, 2, ',', '.') }} EUR {{ number_format($exp->total_commissions, 2, ',', '.') }} EUR {{ $exp->created_at->format('d.m.Y H:i') }} @if (!$exp->isLocked())
@csrf
@csrf @method('DELETE')
@else @endif
@endif @endsection