{{ __('Quotation') }} {{ $quotation->quotation_number }}

← Back to Quotations
{{-- Header --}}

Internal Management System

QUOTATION

{{ $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) }}
{{-- Client Info --}}

Bill To

{{ $quotation->client_name }}

@if($quotation->company_name)

{{ $quotation->company_name }}

@endif @if($quotation->client)

{{ $quotation->client->email }}

@endif
@if($quotation->project)

Project

{{ $quotation->project->name }}

@endif
{{-- Items Table --}} @foreach($quotation->items as $index => $item) @endforeach
# Description Qty Unit Price Total
{{ $index + 1 }} {{ $item->description }} {{ $item->quantity }} Rs{{ number_format($item->unit_price, 2) }} Rs{{ number_format($item->total, 2) }}
{{-- Totals --}}
Subtotal: Rs{{ number_format($quotation->total_amount, 2) }}
@if($quotation->discount > 0)
Discount: -Rs{{ number_format($quotation->discount, 2) }}
@endif
Final Amount: Rs{{ number_format($quotation->final_amount, 2) }}
{{-- Notes & Terms --}} @if($quotation->notes || $quotation->terms)
@if($quotation->notes)

Notes

{{ $quotation->notes }}

@endif @if($quotation->terms)

Terms & Conditions

{{ $quotation->terms }}

@endif
@endif {{-- Actions --}} @if($quotation->status === 'draft')
@csrf
@endif