@extends('layout.master') @push('plugin-styles') @endpush @section('content')
@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


@foreach ($equipments as $index => $equipment) @endforeach
No Component System Name Description Applicable
{{ $index + 1 }} {{ $equipment->name }} {{ $equipment->description }}

Primary System

@foreach ($components as $index => $component) @endforeach
No Primary System Name Description Applicable
{{ $index + 1 }} {{ $component->name }} {{ $component->description }}

Sub-Primary System

@foreach ($subComponents as $index => $subComponent) @endforeach
No Sub-Primary System Name Description Applicable
{{ $index + 1 }} {{ $subComponent->name }} {{ $subComponent->description }}

Secondary System

@foreach ($parts as $index => $part) @endforeach
No Secondary System Name Description Applicable
{{ $index + 1 }} {{ $part->name }} {{ $part->description }}

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