@extends('layouts.master') @section('title', \Lang::get('forum.thread')) @section('css') @stop @section('content')

@lang('forum.topic_list') › {{ $topic['result']['name'] }} @lang('forum.create_thread')

@if($data['status'] == 444)

@lang('forum.no_thread')

@else @foreach($data['result'] as $key => $value) @if($value['thread_status_type_id'] == 1)

{{ $value['name'] }}

{{ $value['user_name'] }}
{{ date('Y-m-d H:i:s', strtotime($value['created_at'])) }}
@else @if($value['user_id'] == $GLOBALS['user']['result']['id'])

{{ $value['name'] }}

{{ $value['user_name'] }}
{{ date('Y-m-d H:i:s', strtotime($value['created_at'])) }}
@endif @endif @endforeach @endif
@stop @section('javascript') @stop