@extends('layouts.app') @section('title', 'Products (Detailed) - Quotation App') @section('styles') @endsection @section('content')

Products (Detailed)

@if(session('success'))
{{ session('success') }}
@endif @if($products->count() > 0) @foreach($products as $index => $product) @endforeach
# 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
Edit
@csrf @method('DELETE')
@else

No Products yet

Click the "Add Product" button to create your first detailed product.

@endif
@endsection