@extends('layouts.dashboard.main') {{-- content --}} @section('content')
{!! implode('', [ __("lang.thread.title"), __("lang.button.index"), ]) !!}
{!! __("lang.board.title") !!}
{!! Form::select('board_code', $board_list, $board_code, [ 'class' => 'form-select', 'id' => 'code', ]) !!}
{!! __("lang.common.count") !!} : {!! $thread_list_count !!}
@if($thread_list_count > 0) @foreach($thread_list as $key => $value) @endforeach @else @endif
  # {!! implode('', [ __("lang.topic.title"), __("lang.unit.number"), ]) !!} {!! __("lang.thread.title") !!} {!! __("lang.form.seq") !!}
{!! $key + 1 !!}
{!! $value['topic_list_count'] !!}
{!! $value['thread_title'] !!}
{!! $value['seq'] !!}
{!! __("lang.error.empty") !!}
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop