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

Action Items - {{ $toolboxTalk->title }}

Back to Talk

Manage Action Items

@csrf
@if(!empty($actionItems)) @foreach($actionItems as $index => $item)
@endforeach @endif

Assigned Actions Summary

@foreach($attendances as $attendance) @if(!empty($attendance->assigned_actions))
{{ $attendance->employee_name }}
    @foreach($attendance->assigned_actions as $action)
  • {{ $action['title'] ?? 'Untitled Action' }}
  • @endforeach
@if($attendance->action_acknowledged)
Acknowledged
@endif
@endif @endforeach
@endsection