{{ __('Dane aktywnego klienta') }}

← Powrót Edytuj
@csrf
@csrf
@csrf

Dane klienta:

ID: {{ $clients[0]->tax_cl_id ?? '–' }}
Rok: {{ $year ?? '–' }}
Imię: {{ $clients[0]->tax_cl_name ?? '–' }}
Nazwisko: {{ $clients[0]->tax_cl_surname ?? '–' }}
Steuer-ID: {{ $attributes[1] ?? '–' }}
Data urodzenia: {{ $attributes[2] ?? '–' }}
E-mail: {{ $attributes[3] ?? '–' }}
Numer Telefonu: {{ $attributes[4] ?? '–' }}
@csrf @method('POST')

Prywatna notatka:

@csrf @method('PUT')

Wymagane dokumenty

    @if ($formular) @elseif($year && $year != '-')
    @csrf
    @endif @foreach ($allDocuments as $doc)
    {{ $doc->tax_doc_name }} @if (!empty($notes[$doc->tax_doc_id])) ({{ $notes[$doc->tax_doc_id] }}) @endif
    @csrf
    @csrf @method('DELETE')
    @if (!empty($documentLinks[$doc->tax_doc_id]))
      @foreach ($documentLinks[$doc->tax_doc_id] as $link) @php $file = basename($link); @endphp
    • - {{ $file }}
      @csrf @method('DELETE')
    • @endforeach
    @endif @endforeach
@csrf
@if ($notifications->count())

Powiadomienia

    @foreach ($notifications as $notification)
  • {{ $notification->notification_content }} {{ \Carbon\Carbon::parse($notification->created_at)->format('Y-m-d') }}
  • @endforeach
@endif