@extends('layouts.admin.master') @section('content') @if ($errors->any())
@endif

Edit quotations for: {{ $quotations->first()->user->name ?? 'N/A' }}

@php $quotation = $quotations->first(); @endphp
@csrf @method('PUT')
Equipment Details
@foreach($quotation->quotationProducts as $key => $product) @endforeach
No Name of Equipment Merk Type QTY Unit Price Total Price
{{ $key + 1 }} {{ $product->equipment_name ?? 'Produk tidak tersedia' }} {{ $product->merk_type ?? 'Merk tidak tersedia' }} quantity ?? 0) }}" readonly> unit_price ?? 0) }}" data-qty="{{ $product->quantity }}"> total_price ?? 0) }}" readonly>
Signature Information
@endsection