@extends('layouts.main_dashboard.app') @section('styles') @endsection @section('title', __('dashboard.All Lessons for :subject', ['subject' => $subject->name]) @section('page_heading', __('dashboard.All Lessons for :subject', ['subject' => $subject->name])) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Add New Lesson') }} @endsection @section('content')

{{ __('dashboard.All Lessons') }}

@if($lessons->isEmpty())
{{ __('dashboard.No data found') }}
{{ __('dashboard.There are no lessons to display, try creating one!') }}
{{ __('dashboard.Add New Lesson') }}
@else
@foreach($lessons as $lesson) @endforeach
{{ __('dashboard.Title') }} {{ __('dashboard.Unit') }} {{ __('dashboard.Description') }} {{ __('dashboard.Actions') }}
{{ $lesson->title }}
{{ $lesson->subjectUnit->name ?? __('dashboard.Not Assigned') }} {{ \Illuminate\Support\Str::limit($lesson->description, 50, '...') }} {{ __('dashboard.Actions') }}
{{ $lessons->appends(request()->query())->links() }}
@endif
@endsection @section('scripts') @endsection