@extends('admin.layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@if($errors->any())
@endif
@csrf @method('PUT')

Performa Invoice No : {{ $taplWorkOrder->performa_invoice_no }}

Work Order No : {{ $taplWorkOrder->work_order_no }}

@php $customer = App\Models\Customer::find($taplWorkOrder->customer_id); $customerName = $customer ? $customer->customer_name : 'N/A'; // Use 'N/A' or any default value you prefer @endphp

{{ $customerName }}

AMC Type : {{ $taplWorkOrder->type_of_amc }}

{{-- --}}
@if($taplWorkOrdertDetails->isEmpty()) @else @php $sortedDetails = $taplWorkOrdertDetails->sortBy('sl_no'); @endphp @foreach ($sortedDetails as $taplDetail) @endforeach @endif
SL.No TON UQM QTY Brand Model No Serial No Location Action
{{-- Save & Proceed --}}
@endsection