@extends('layouts.app') @section('title', 'Products (Detailed) - Quotation App') @section('styles') @endsection @section('content')
| # | Master Product | Model | Price | Specifications | Actions |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $product['master']['product_name'] ?? 'N/A' }} | {{ $product['product_model'] }} | ₹{{ number_format($product['price'], 2) }} |
@if(count($product['specs']) > 0)
@foreach($product['specs'] as $spec)
{{ $spec['spec_name'] }}: {{ $spec['spec_value'] }} {{ $spec['spec_unit'] }}
@endforeach
@else
-
@endif
|
Click the "Add Product" button to create your first detailed product.