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

{{ simpleDate() }}

{{ colName(cId()) }}

Daily Class Implementation Data


@if(session()->has('message'))
{{ session()->get('message') }}
@endif @php $counter = 1; @endphp @foreach ($daily as $this_day) @if ($this_day->status) @else @endif @endforeach
S/N Class Year Course Day Time Instructor Class Status Remark
{{ $counter }} {{ $this_day->class_year }} {{ $this_day->course_name }} {{ $this_day->day }} {{ $this_day->time }} {{ $this_day->instructor }}ConductedNot Conducted{{ $this_day->remark }} Update

*In order to forward updated report,

Regenerate Report @if(session('isgenerated')) @php $dates = session()->get('date'); @endphp

View Report

@endif
@endsection