@extends('layouts.master')
@section('title', \Lang::get('forum.forum_topic'))
@section('css')
@stop
@section('content')
@lang('forum.topic_list')
@lang('forum.topic') |
@lang('forum.thread') |
@lang('forum.create_time') |
@if($data['status'] == 200)
@foreach($data['result'] as $topic)
@include('forum.partials.topic', ['topic' => $topic])
@endforeach
@endif
@stop
@section('javascript')
@stop