@extends('layouts.app') @section('content')

Create CheckList for: - {{$equipment->name}} -


Choose divisions:

@foreach($chklistdivs as $chklistdiv)
id}} class="chklist_div col-lg-3 col-md-6 col-sm-12 border border-blue p-2 m-2 scrollbar scrollbar-lady-lips scrollbar-morpheus-den" style="box-shadow: 0px 0px 5px darkgray;height:400px;overflow-y:auto;">
X

{{$chklistdiv->name}}


Page 1 Fields
@foreach ($chklistdiv->chklistfields->where('documented','=',1) as $field)
id}} >
X

id}}>{{$field->description}}

@endforeach
Page 2 Fields
@foreach ($chklistdiv->chklistfields->where('documented','=',2) as $field)
id}} >
X

id}}>{{$field->description}}

@endforeach
Not Documented
@foreach ($chklistdiv->chklistfields->where('documented','=',0) as $field)
id}} >
X

id}}>{{$field->description}}

@endforeach
@endforeach
@endsection