@extends('user.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('user.partials.rtl-style') @section('content')
{{ __('Modules') . ' (' . $language->name . ' ' . __('Language') . ')' }}
@if (!empty($langs)) @endif
@if (count($modules) == 0)

{{ __('NO MODULE FOUND!') }}

@else
@foreach ($modules as $module) @endforeach
{{ __('Title') }} {{ __('Status') }} {{ __('Serial Number') }} {{ __('Actions') }} {{ __('Lesson') }}
{{ $module->title }} @if ($module->status == 'draft') {{ ucfirst($module->status) }} @else {{ ucfirst($module->status) }} @endif {{ $module->serial_number }} {{ __('Edit') }}
@csrf
{{ __('Add') }} {{ __('View') }} {{-- create modal (lesson) --}} @include('user.course_management.lesson.create') {{-- view modal (lesson) --}} @include('user.course_management.lesson.index')
@endif
{{-- create modal --}} @include('user.course_management.module.create') {{-- edit modal --}} @include('user.course_management.module.edit') {{-- edit modal (lesson) --}} @include('user.course_management.lesson.edit') @endsection @section('scripts') @endsection