@extends('layouts.dashboard.main') {{-- content --}} @section('content') {!! Form::open($form) !!} {!! Form::hidden('board_code', $board_code) !!} {!! Form::hidden('thread[thread_code]', $thread_code) !!} @include('layouts.dashboard.components.report.nav')
{!! __("lang.common.count") !!} : {!! $thread_list_count !!}
@if($thread_list_count > 0) @foreach($thread_list as $key => $value) @endforeach @else @endif
# {!! __("lang.dictionary.is_disabled.1") !!}
  • {!! implode('', [ __("lang.thread.title"), __("lang.unit.number"), ]) !!}
  • {!! __("lang.board.board_title") !!}
  • {!! __("lang.form.seq") !!}
{!! $key + 1 !!}
@if($value['is_disabled'])
@endif
{!! $value['topic_list_count'] !!}
{!! $value['thread_title'] !!}
{!! $value['seq'] !!}
{!! __("lang.error.empty") !!}
{!! __("lang.button.reset") !!} {!! __("lang.button.back") !!}
{!! Form::close() !!} @endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop