Prepared For
@if($quotation->customer)
{{ $quotation->customer->name }}
@if($quotation->customer->email){{ $quotation->customer->email }}
@endif @if($quotation->customer->phone){{ $quotation->customer->phone }}
@endif @if($quotation->customer->address){{ $quotation->customer->address }}@endif
@endif
@if($quotation->notes)
Service Description
{{ $quotation->notes }}
@endif @forelse($quotation->items as $item) @php $line = ($item->quantity * $item->unit_price) * (1 + (($item->tax_rate ?? 0) / 100)); @endphp @empty @endforelse
{{ $item->description }} @if($item->notes)
{{ $item->notes }} @endif
Qty {{ number_format($item->quantity, 2) }} × {{ $quotation->currency }} {{ number_format($item->unit_price, 2) }} @if($item->tax_rate) + {{ $item->tax_rate }}% tax @endif
{{ $quotation->currency }} {{ number_format($line, 2) }}
No items
@if(($quotation->tax_amount ?? 0) > 0) @endif @if(($quotation->discount_amount ?? 0) > 0) @endif
Pricing Summary
Subtotal{{ $quotation->currency }} {{ number_format($quotation->subtotal, 2) }}
Tax{{ $quotation->currency }} {{ number_format($quotation->tax_amount, 2) }}
Discount-{{ $quotation->currency }} {{ number_format($quotation->discount_amount, 2) }}
Total{{ $quotation->currency }} {{ number_format($quotation->total, 2) }}
Acceptance
Client Signature
Date
@if($quotation->terms)
Terms: {{ $quotation->terms }}
@endif