@extends('layouts.admin') @section('title', 'Preview Invoice') @section('page-title', 'Design & Finalize Invoice') @section('content')
Invoice #{{ $data['invoice_number'] ?? 'INV-2024-001' }} • Draft
{{ $companySettings->company_name ?? config('app.name', 'ProInvoice') }}
@if($companySettings->company_address){{ $companySettings->company_address }}
@endif @if($companySettings->company_city || $companySettings->company_state || $companySettings->company_zip){{ trim(($companySettings->company_city ?? '') . ', ' . ($companySettings->company_state ?? '') . ' ' . ($companySettings->company_zip ?? ''), ', ') }}
@endif#{{ $data['invoice_number'] ?? 'INV-2024-001' }}
Bill To
{{ $customer->email }}
@endif @if($customer->phone){{ $customer->phone }}
@endif @if($customer->address){{ $customer->address }}
@endif| Description | Qty | Price | Total |
|---|---|---|---|
|
{{ $item['description'] }} @if(!empty($item['notes'])){{ $item['notes'] }} @endif |
{{ number_format($item['quantity'], 2) }} | {{ $selectedCurrency->symbol ?? '$' }}{{ number_format($item['unit_price'], 2) }} | {{ $selectedCurrency->symbol ?? '$' }}{{ number_format($item['total'], 2) }} |
| No items added | |||
AUTHORIZED SIGNATURE
Powered by {{ config('app.name', 'ProInvoice') }}