@extends('layouts.admin') @section('title', 'Preview Quotation') @section('page-title', 'Design & Finalize Quotation') @section('content')
Quotation #{{ $data['quotation_number'] ?? 'QUO-2024-001' }} • Draft
{{ $companySettings->company_name ?? config('app.name', 'ProInvoice') }}
@if($companySettings->company_address){{ $companySettings->company_address }}
@endif#{{ $data['quotation_number'] ?? 'QUO-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 | |||
Notes
{{ $data['notes'] }}
Terms & Conditions
{{ $data['terms'] }}
Powered by {{ config('app.name', 'ProInvoice') }}