@extends('layouts.dashboard.main') {{-- content --}} @section('content') @include('layouts.dashboard.components.report.nav')
@if(isset($thread_list))
{!! implode('', [ __("lang.thread.title"), __("lang.button.index"), ]) !!}({!! $thread_list_count !!})
@if($thread_list_count > 0) @foreach($thread_list as $key => $value)
{{-- --}} {!! $key + 1 !!}.  {!! implode('', [ $value['thread_title'], ]) !!}({!! $value['topic_list_count'] !!})
{!! __("lang.common.count") !!} : {!! $value['topic_list_count'] !!}
@if($value['topic_list_count'] > 0) @foreach($value['topic_list'] as $i => $topic) @endforeach @else @endif
# 共有 {!! __("lang.topic.title") !!} {!! implode('', [ //__("lang.report.title"), '報告', __("lang.unit.number"), ]) !!}
{!! $i + 1 !!}
@if($topic['is_share'])
{!! __("lang.form.is_share") !!}
@endif
{!! $topic['topic_title'] !!}
{!! $topic['report_list_count'] !!}
{!! __("lang.error.empty") !!}
@endforeach @else

{!! __("lang.error.empty") !!}

@endif
@endif
{!! implode('', [ __("lang.button.back"), ]) !!}
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop