@extends('layouts.app') @section('title', 'Quote Details') @section('content')
{{ $quote->quote_number }}
City, State, Country
Phone: +91 0000000000
Estimate For
{{ $quote->customer->billing_address }}
{{ $quote->customer->billing_city }}, {{ $quote->customer->billing_state }}
{{ $quote->customer->billing_zip }}
{{ $quote->subject }}
| # | Items & Description | Qty | Rate | Amount |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->item_name }} | {{ number_format($item->quantity, 2) }} | {{ formatCurrency($item->rate) }} | {{ formatCurrency($item->amount) }} |
{{ $quote->notes }}
{{ $quote->terms }}
{{ $quote->created_at->format('M d, Y h:i A') }}
{{ $quote->updated_at->format('M d, Y h:i A') }}