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

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

{{ date('Y-m-d', strtotime($thread['result']['created_at'])) }} , {{ date('H:i a', strtotime($thread['result']['created_at'])) }}
@lang('forum.posts')

{{ $thread['result']['name'] }}


{!! $thread['result']['value'] !!}
@if(!empty($post['result'])) @foreach($post['result'] as $post) @include('forum.partials.post', ['post' => $post, 'target' => 'load']) @endforeach @endif
@stop @section('javascript') @stop