Internal Management System
{{ $quotation->quotation_number }}
Date: {{ $quotation->created_at->format('M d, Y') }}
@php $statusColors = [ 'draft' => 'bg-gray-100 text-gray-800', 'sent' => 'bg-blue-100 text-blue-800', 'accepted' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', ]; @endphp {{ ucfirst($quotation->status) }}{{ $quotation->client_name }}
@if($quotation->company_name){{ $quotation->company_name }}
@endif @if($quotation->client){{ $quotation->client->email }}
@endif{{ $quotation->project->name }}
| # | Description | Qty | Unit Price | Total |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->description }} | {{ $item->quantity }} | Rs{{ number_format($item->unit_price, 2) }} | Rs{{ number_format($item->total, 2) }} |
{{ $quotation->notes }}
{{ $quotation->terms }}