{{ __('Quotations') }}

@if (session('success'))

{{ session('success') }}

@endif

All Quotations

@if($quotations->count() > 0) @foreach($quotations as $quotation) @endforeach
Number Client Project Amount Status Date Actions
{{ $quotation->quotation_number }} {{ $quotation->client_name }} {{ $quotation->project->name ?? '—' }} Rs{{ number_format($quotation->final_amount, 2) }} @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', ]; $color = $statusColors[$quotation->status] ?? 'bg-gray-100 text-gray-800'; @endphp {{ ucfirst($quotation->status) }} {{ $quotation->created_at->format('M d, Y') }} View @if($quotation->status === 'draft')
@csrf
@endif
@else

No quotations yet

Click "New Quotation" to create your first quotation.

@endif
{{-- Create Quotation Modal --}}