@extends('layouts.app') @section('title', 'Invoice Preview') @push('style') @endpush @section('main')

Invoice Preview - {{ ucfirst($template) }} Template

@if($settings->include_company_logo ?? true) @endif

{{ $settings->company_name ?? 'Your Company Name' }}

123 Business Street
Dhaka, Bangladesh
Phone: +880 1712-345678
Email: info@company.com

{{ $settings->invoice_header_text ?? 'INVOICE' }}

Invoice #: INV-2025-001
Date: {{ date('M d, Y') }}
Due Date: {{ date('M d, Y', strtotime('+30 days')) }}
Bill To:
John Doe
456 Customer Avenue
Dhaka, Bangladesh
Phone: +880 1798-765432
Email: john.doe@email.com
Payment Method:
Cash Payment
Status: Paid
Item Description Qty Unit Price Total
iPhone 15 Pro Max 256GB - Natural Titanium 1 BDT 140,000.00 BDT 140,000.00
Samsung Galaxy S24 Ultra 512GB - Titanium Black 2 BDT 95,000.00 BDT 190,000.00
Wireless Charger - Fast Charging 3 BDT 2,500.00 BDT 7,500.00
@if($settings->include_qr_code ?? false)
QR Code
(Verification)
@endif
Subtotal: BDT 337,500.00
Tax (0%): BDT 0.00
Discount: BDT 0.00
Grand Total: BDT 337,500.00
@if($settings->invoice_footer_text)

{{ $settings->invoice_footer_text }}

@endif @if($settings->invoice_terms_conditions)
Terms & Conditions:

{{ $settings->invoice_terms_conditions }}

@endif
@endsection @push('scripts') @endpush