@extends('layouts.admin')
@section('title', 'Invoice '.$invoice->number)
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
| 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: