@extends('layout.master') @push('plugin-styles') @endpush @section('content')
@method('PUT') @csrf
@if ($errors->has('serial_no'))
{{ $errors->first('serial_no') }}
@endif @if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif @if ($errors->has('field_id'))
{{ $errors->first('field_id') }}
@endif @if ($errors->has('equipment_component_id'))
{{ $errors->first('equipment_component_id') }}
@endif @if ($errors->has('component_part_id'))
{{ $errors->first('component_part_id') }}
@endif @if ($errors->has('part_detail_id'))
{{ $errors->first('part_detail_id') }}
@endif

Model



Specification



Location



Components

Select the main components systems that apply to this crane.
@foreach ($equipments as $index => $equipment) @php $findAssignEquipment = findCraneInventoryEquipment($craneInventory->id, $equipment->id); @endphp @endforeach
No Component System Name Description Applicable
{{ $index + 1 }} {{ $equipment->name }} {{ $equipment->description }}

Primary System

Select the primary systems that apply to this crane.
@foreach ($components as $index => $component) @php $findAssignComponent = findCraneInventoryEquipmentComponent($craneInventory->id, $component->id); @endphp @endforeach
No Primary System Name Description Applicable
{{ $index + 1 }} {{ $component->name }} {{ $component->description }}

Sub-Primary System

Select the sub-primary systems that apply to this crane.
@foreach ($subComponents as $index => $subComponent) @php $findAssignSubComponent = findCraneInventoryComponentPart($craneInventory->id, $subComponent->id); @endphp @endforeach
No Sub-Primary System Name Description Applicable
{{ $index + 1 }} {{ $subComponent->name }} {{ $subComponent->description }}

Secondary System

Select the secondary systems that apply to this crane.
@foreach ($parts as $index => $part) @php $findAssignPart = findCraneInventoryPartDetail($craneInventory->id, $part->id); @endphp @endforeach
No Secondary System Name Description Applicable
{{ $index + 1 }} {{ $part->name }} {{ $part->description }}

Back
@endsection @push('plugin-scripts') @endpush @push('custom-scripts') @endpush