@extends('layouts.app')
@section('title', 'Checklist History')
@section('content')
{{ $s->template->name }}
{{ $s->submission_date->format('d M Y') }} — {{ $s->user->name }}
@foreach ($s->items as $item)
{{ $item->is_checked ? '✅' : '❌' }} {{ $item->templateItem->description }}
@endforeach
@if ($s->notes)
Notes: {{ $s->notes }}
@endif
@endforeach
{{ $submissions->links() }}
@endsection