@extends('layouts.master') @section('title', 'Course') @section('parentPageTitle', 'Update Course') @section('css-link') @include('layouts.include.form.form_css') @include('layouts.include.table.table_css') @stop @section('page-style') @stop @section('content')

{{ $course->title }}

@if (\Illuminate\Support\Facades\Auth::user()->user_type != 'Admin') @else
@endif
@foreach ($course->classesAll as $item)
@translate(Class) {{ $loop->index + 1 }} : {{ $item->title }} @if (\Illuminate\Support\Facades\Auth::user()->user_type != 'Admin') @endif
@foreach ($item->contentsAll as $content) @endforeach
{{ $content->title }} {{ $content->content_type }} @if (\Illuminate\Support\Facades\Auth::user()->user_type == 'Instructor') @if ($content->content_type === 'Quiz') Questions @endif
is_published == true ? 'checked' : null }} /> @translate(Published)
is_preview == true ? 'checked' : null }} /> @translate(Preview)
@endif
@endforeach
@endsection @section('js-link') @include('layouts.include.form.form_js') @include('layouts.include.table.table_js') @stop @section('page-script') @stop