@extends($layout) @section('content')

{{$subject->subject_title}}

@if(!count($topics))

{{getPhrase('no_topics_available')}}

@endif @foreach($topics as $topic)

{{$topic->topic_name}}

    @foreach($topic->childs as $child_topic) @if(!count($child_topic->topic_name))

    {{getPhrase('no_topics_available')}}

    @endif
  • {{$child_topic->topic_name}}

  • @endforeach
@endforeach
@stop @section('footer_scripts') @stop