{{ __('Szczegóły faktury') }}

← Powrót Otwórz PDF Pobierz
@csrf
@csrf @method('DELETE')

Faktura #{{ $invoice->inv_id }}

Dane klienta:

Nazwa: {{ $invoice->company_name ?? ($invoice->acc_cl_name . ' ' . $invoice->acc_cl_username) }}
Ulica: {{ $invoice->company_adress_street ?? '-' }}
Kod pocztowy: {{ $invoice->company_adress_postcode ?? '-' }}
Miasto: {{ $invoice->company_adress_city ?? '-' }}
Kraj: {{ $invoice->company_adress_country ?? '-' }}

Usługi

@foreach($invoice->services as $service) @endforeach @php $netto = collect($invoice->services)->sum('total'); $vat = $netto * 0.19; $brutto = $netto + $vat; @endphp
Opis Ilość Cena Suma
{{ $service['description'] }} {{ $service['quantity'] }} {{ number_format($service['price'], 2, ',', ' ') }} EUR {{ number_format($service['total'], 2, ',', ' ') }} EUR
Gesamtbetrag netto {{ number_format($netto, 2, ',', ' ') }} EUR
Umsatzsteuer 19% {{ number_format($vat, 2, ',', ' ') }} EUR
Gesamtbetrag brutto {{ number_format($brutto, 2, ',', ' ') }} EUR

Wyślij emaila z fakturą do klienta

@csrf