@extends('layouts.dashboard.superadminapp') @section('title', 'View Quotation') @section('styles') @endsection @section('content')
{{ $quotation->customer->company ?? $quotation->customer_name ?? 'N/A' }}
{{ $quotation->gst ?: '-' }}
{{ $quotation->description }}
| # | Material | Type | Quantity | Rate | RM Weight | RM Cost | Value |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $rm['material_id'] ?? '-' }} | {{ $rm['type'] ?? '-' }} | {{ $rm['quantity'] ?? '-' }} | {{ isset($rm['rate']) ? number_format($rm['rate'], 2) : '-' }} | {{ $rm['rm_weight'] ?? '-' }} | {{ isset($rm['rm_cost']) ? number_format($rm['rm_cost'], 2) : '-' }} | {{ isset($rm['value']) ? number_format($rm['value'], 2) : '-' }} |
| # | Description | Quantity | Unit | Rate (INR) | Value (INR) |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $cc['desc'] ?? '-' }} | {{ $cc['quantity'] ?? '-' }} | {{ $cc['unit'] ?? '-' }} | {{ isset($cc['rate']) ? number_format($cc['rate'], 2) : '-' }} | {{ isset($cc['value']) ? number_format($cc['value'], 2) : '-' }} |
| # | Description | Quantity | Unit | Rate (INR) | Value (INR) |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $pc['desc'] ?? '-' }} | {{ $pc['quantity'] ?? '-' }} | {{ $pc['unit'] ?? '-' }} | {{ isset($pc['rate']) ? number_format($pc['rate'], 2) : '-' }} | {{ isset($pc['value']) ? number_format($pc['value'], 2) : '-' }} |
{{ $quotation->note }}
@elseNo notes available
@endif