@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
Address

California, United States

Zip-code: 90201

Estimate No: {{$estimate->estimate_no}}
Date: {{ $estimate->date->format('Y-m-d') }}
To,

{{ $estimate->customer?->customer_name ?? 'N/A' }}

{{ $estimate->customer?->address ?? 'N/A' }}

Phone: {{ $estimate->customer?->phone ?? 'N/A' }}

Client Pan: {{ $estimate->customer?->company_pan ?? 'N/A' }}

@if ($estimate->estimateDetails->isNotEmpty()) @foreach ($estimate->estimateDetails as $index => $item) @endforeach @endif
# Description Narration Qty Rate Non Taxable Taxable
{{ $index + 1 }}

{{ $item->billingComponent?->title ?? 'N/A' }}

{{ $item->billingComponent?->unit }} {{ $item->qty }} {{ $item->billingComponent?->price }} {{ $item->billingComponent?->taxable == 0 ? $item->qty * $item->billingComponent?->price : '' }} {{ $item->billingComponent?->taxable == 1 ? $item->qty * $item->billingComponent?->price : '' }}
Amount in words: Total (A): 0.00 0.00
Taxable Total 0.00
VAT (13%) 0.00
Amount After Tax (B) 0.00
Grand Total (A+B) 0.00
{{--
Estimate Details:

Total Amount: 0.00

Amount in words: $ One Lakh Five Thousand only /-

--}}
Print @if ($estimate->approval_status != 3) Approve @endif
@endsection @push('js') @endpush