@extends('layouts.admin') @section('title', 'Invoice '.$invoice->number) @section('content') @php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
Bill To:
{{ $invoice->guest?->first_name }} {{ $invoice->guest?->last_name }}
{{ $invoice->guest?->email }}
Date: {{ $invoice->invoice_date?->format('M j, Y') }}
Due: {{ $invoice->due_date?->format('M j, Y') }}
Subtotal{{ $currency }} {{ number_format($invoice->subtotal, 2) }}
Tax{{ $currency }} {{ number_format($invoice->tax, 2) }}
Service Charge{{ $currency }} {{ number_format($invoice->service_charge, 2) }}
Total{{ $currency }} {{ number_format($invoice->total, 2) }}
Paid{{ $currency }} {{ number_format($invoice->paid_amount, 2) }}
Balance{{ $currency }} {{ number_format($invoice->balance, 2) }}

Status:

@endsection