@extends('layouts.app') @section('title', 'Invoice '.$invoice->invoice_number) @section('page-title', 'Invoice') @section('content')
| Description | Qty | Amount |
|---|---|---|
| Room {{ $invoice->booking->room->room_number }} ({{ $invoice->booking->room->roomType->name }}) | {{ $invoice->booking->nights }}n | ₦{{ number_format($invoice->booking->room->roomType->base_price * $invoice->booking->nights, 2) }} |
| {{ $extra->item_name }} | {{ $extra->quantity }} | ₦{{ number_format($extra->total, 2) }} |
| Discount | -₦{{ number_format($invoice->discount, 2) }} | |
| Tax | ₦{{ number_format($invoice->tax, 2) }} | |
| Total | ₦{{ number_format($invoice->total, 2) }} | |
| Paid | ₦{{ number_format($paid, 2) }} | |
| Balance Due | ₦{{ number_format($invoice->total - $paid, 2) }} | |