@extends('layouts.app') @section('title', 'Lesson Plan Details | Curriculum') @section('sidebar-menu') @include('teacher.partials.sidebar') @endsection @section('breadcrumb') Home / Curriculum / Lesson Details @endsection @section('content')
📖 {{ $curriculum->title }} @if($curriculum->status == 'completed') Completed @else Pending @endif
Overview
Class:
{{ $curriculum->schoolClass->name ?? 'N/A' }}
Subject:
{{ $curriculum->subject->name ?? 'N/A' }}
Target Date:
{{ \Carbon\Carbon::parse($curriculum->date)->format('l, F j, Y') }}

Description / Objectives
{{ $curriculum->description ?? 'No description provided.' }}
@endsection