@extends('layouts.app')
@section('title', 'SOPs')
@section('content')
📘 Standard Operating Procedures
@forelse ($sops as $categoryName => $group)
{{ $categoryName ?? 'Uncategorized' }}
@foreach ($group as $sop)
@php $isRead = $sop->reads->contains('user_id', auth()->id()); @endphp
{{ $sop->title }}
@if ($sop->requires_acknowledgment)
@if ($isRead)
Acknowledged
@else
Needs acknowledgment
@endif
@endif
{{ $sop->content }}
@if ($sop->requires_acknowledgment && !$isRead)
@endif
@endforeach
@empty
No SOPs published yet.
@endforelse
@endsection