@extends('user.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('user.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') }} {{-- create modal (lesson) --}} @include('user.course_management.lesson.create') {{-- view modal (lesson) --}} @include('user.course_management.lesson.index') |