@extends('layouts.master') @section('title') Delete Items from BOD @endsection @section('page-title') Delete BOD Items @endsection @section('body') @endsection @section('content')

Delete Items from BOD

{{-- BOD Information --}}
{{-- Delete Items Table --}}
@csrf @method('DELETE')
@forelse($bod->items as $index => $item) @empty @endforelse
# Item Type Floor Area Name Height (in Feet) Approx Area (Square Feet) Design Temperature (C) Type of Unit Model No Capacity Index Ton No of Units Total of Units Capacity Index Total Machine No System Remarks
{{ $index + 1 }} {{ $item->bod_item_type }} {{ $item->bod_floor }} {{ $item->bod_area_name }} {{ $item->bod_height_in_feet }} {{ $item->bod_approx_area_sqft }} {{ $item->bod_design_temperature }} {{ $item->bod_type_of_unit }} {{ $item->bod_model_no }} {{ $item->bod_capicity }} {{ $item->bod_ton }} {{ $item->bod_no_of_unit }} {{ $item->bod_units_total }} {{ $item->bod_capacity_total }} {{ $item->bod_machine_no }} {{ $item->bod_system }} {{ $item->bod_remarks }}
No items found for this BOD.
Back
@endsection @section('scripts') @endsection