@extends('layouts.sitelayout') @section('content')
@if($lms_series)

{{$lms_series->title}}

@endif
    @if(count($lms_cates)) @foreach($lms_cates as $category)
  • slug}}>{{$category->category}}
  • @endforeach @else

    {{getPhrase('no_categories_are_available')}}

    @endif
@if(count($contents))
@foreach($contents as $content)
{{--
@if($content->image) @else @endif
--}}

{{$content->title}}

@if($content->content_type == 'file')

{{getPhrase('download_file')}}

@elseif($content->content_type == 'url' || $content->content_type == 'video_url' || $content->content_type == 'audio_url')

{{getPhrase('view')}}

@elseif($content->content_type == 'iframe')

{{getPhrase('view')}}

@endif
@endforeach
    {{ $contents->links() }}
@endif
@stop @section('footer_scripts') @stop