@if($topic['parent'] != 0)
@if(empty($topic['children']))
{{ $topic['name'] }}
|
{{ $topic['total_threads'] }}
|
{{ \Carbon\Carbon::createFromTimeStamp(strtotime($topic['created_at']))->diffForHumans() }}
|
@else
{{ $topic['name'] }}
|
{{ $topic['total_threads'] }}
|
{{ \Carbon\Carbon::createFromTimeStamp(strtotime($topic['created_at']))->diffForHumans() }}
|
@foreach($topic['children'] as $children)
@include('forum.partials.topic', ['topic' => $children])
@endforeach
@endif
@else
{{ $topic['name'] }}
|
{{ $topic['total_threads'] }}
|
{{ \Carbon\Carbon::createFromTimeStamp(strtotime($topic['created_at']))->diffForHumans() }}
|
@foreach($topic['children'] as $children)
@include('forum.partials.topic', ['topic' => $children])
@endforeach
@endif