{{ $quotation->company && $quotation->company->address ? $quotation->company->address : '' }}
@if($quotation->company && $quotation->company->phone)Phone: {{ $quotation->company->phone }}
@endif @if($quotation->company && $quotation->company->email)Email: {{ $quotation->company->email }}
@endif{{ $quotation->client_name }}
@if($quotation->client_email){{ $quotation->client_email }}
@endif @if($quotation->client_phone){{ $quotation->client_phone }}
@endif @if($quotation->client_address){{ $quotation->client_address }}
@endifIssue Date: {{ $quotation->issue_date->format('M d, Y') }}
@if($quotation->valid_until)Valid Until: {{ $quotation->valid_until->format('M d, Y') }}
@endifPrepared By: {{ $quotation->user->name ?? 'System' }}
| Description | Qty | Hours | Rate | Amount |
|---|---|---|---|---|
|
{{ $item->description }}
@if($item->type === 'product')
(Product) @endif |
{{ $item->quantity }} | {{ $item->hours > 0 ? $item->hours : '-' }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_price, 2) }} |
| Subtotal: | ${{ number_format($quotation->subtotal, 2) }} |
| Tax ({{ $quotation->tax_rate }}%): | ${{ number_format($quotation->tax_amount, 2) }} |
| Total: | ${{ number_format($quotation->total_amount, 2) }} |
{{ $quotation->notes }}