@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
{{ __('Title') }} | {{ __('Status') }} | {{ __('Serial Number') }} | {{ __('Actions') }} | {{ __('Lesson') }} | |
---|---|---|---|---|---|
{{$module->title}} | @if ($module->status == 'draft') {{ ucfirst($module->status) }} @else {{ ucfirst($module->status) }} @endif | {{ $module->serial_number }} | {{ __('Edit') }} | {{ __('Add') }} {{ __('View') }} {{-- view modal (lesson) --}} @include('backend.curriculum.lesson.index') {{-- create modal (lesson) --}} @include('backend.curriculum.lesson.create') |