@extends('layouts.app') @section('title', 'Select Checklist') @section('content')

Select Checklist

@if($checklists->isEmpty())

No Checklists Assigned

Please contact your administrator to assign checklists to your account.

@else
@foreach($checklists as $checklist)
{{ $checklist->title }}

{{ Str::limit($checklist->description, 100) ?: 'No description' }}

{{ $checklist->items_count }} items Every {{ $checklist->frequency_days }} days

@endforeach
@endif @endsection