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

Things To Do Weekwise

@php // ensure $homeworks exists and is a collection $homeworks = isset($homeworks) ? $homeworks : collect(); @endphp @if($homeworks->count())
@foreach($homeworks as $homework) @endforeach
Week Exercise Count Action
{{ $homework->week_name }} {{ $homework->pending_count }} View
@else

No Homework available.

@endif
{{-- Dynamic Document Modal --}} @include('layouts.footers.auth.footer') @endsection