@if($logo) @endif
{{ trans('license.invoice.pdf_title') }}
{{ trans('license.invoice.number_label') }}{{ $order->invoice_number }}
{{ trans('license.invoice.date_paid_label') }}{{ optional($order->paid_at)->translatedFormat('d F Y') }}
{{ trans('license.invoice.from_label') }} {{ $society->name ?? 'Netbyus' }}
@if($society?->headquarters_address ?? $society?->address) {{ $society->headquarters_address ?? $society->address }}
@endif @if($society?->society_email ?? $society?->email) {{ $society->society_email ?? $society->email }}
@endif @if($society?->society_phone ?? $society?->phone) {{ $society->society_phone ?? $society->phone }} @endif
{{ trans('license.invoice.bill_to_label') }} {{ trim(($order->firstname ?? '') . ' ' . ($order->lastname ?? '')) ?: $order->email }}
{{ $order->email }} @if($order->phone)
{{ $order->phone }} @endif
{{ trans('license.invoice.paid_amount_line', ['amount' => number_format($order->amount, 0, ',', ' '), 'currency' => $order->currency, 'date' => optional($order->paid_at)->translatedFormat('d F Y')]) }}
{{ trans('license.invoice.description_label') }} {{ trans('license.invoice.period_label') }} {{ trans('license.invoice.monthly_price_label') }} {{ trans('license.invoice.amount_label') }}
{{ $offerName ?? trans('license.invoice.default_offer_name') }} @if($periodStart && $periodEnd)
{{ $periodStart->translatedFormat('d M') }} - {{ $periodEnd->translatedFormat('d M Y') }} @endif
{{ trans('license.invoice.duration_months', ['count' => $duration]) }} {{ number_format($unitPrice, 0, ',', ' ') }} {{ $order->currency }} {{ number_format($originalPrice, 0, ',', ' ') }} {{ $order->currency }}
@if($discountAmount > 0) @endif
{{ trans('license.invoice.subtotal_label') }} {{ number_format($originalPrice, 0, ',', ' ') }} {{ $order->currency }}
{{ trans('license.invoice.discount_label') }}{{ $order->promo_code ? ' (' . $order->promo_code . ')' : '' }} -{{ number_format($discountAmount, 0, ',', ' ') }} {{ $order->currency }}
{{ trans('license.invoice.total_label') }} {{ number_format($order->amount, 0, ',', ' ') }} {{ $order->currency }}
{{ trans('license.invoice.amount_paid_label') }} {{ number_format($order->amount, 0, ',', ' ') }} {{ $order->currency }}