52 lines
2.0 KiB
PHP
52 lines
2.0 KiB
PHP
@extends('layouts.legacy')
|
|
|
|
@php
|
|
use Carbon\Carbon;
|
|
@endphp
|
|
|
|
@section('content')
|
|
<div class="container-fluid legacy-page">
|
|
<div class="effect2 page-header-wrap">
|
|
<header class="page-heading">
|
|
<h1 class="page-header">Forum</h1>
|
|
<p>Latest threads</p>
|
|
</header>
|
|
</div>
|
|
|
|
<div class="panel panel-default effect2">
|
|
<div class="panel-heading"><strong>Forum Threads</strong></div>
|
|
<div class="panel-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Thread</th>
|
|
<th class="text-center">Posts</th>
|
|
<th class="text-center">Topics</th>
|
|
<th class="text-right">Last Update</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse ($topics as $topic)
|
|
<tr>
|
|
<td>
|
|
<h4 style="margin:0;">
|
|
<a href="/forum/{{ $topic->topic_id }}/{{ Str::slug($topic->topic ?? '') }}">{{ $topic->topic }}</a>
|
|
</h4>
|
|
<div class="text-muted">{!! $topic->discuss !!}</div>
|
|
</td>
|
|
<td class="text-center">{{ $topic->num_posts ?? 0 }}</td>
|
|
<td class="text-center">{{ $topic->num_subtopics ?? 0 }}</td>
|
|
<td class="text-right">{{ $topic->last_update ? Carbon::parse($topic->last_update)->format('H:i @ d.m') : '' }}</td>
|
|
</tr>
|
|
@empty
|
|
<tr><td colspan="4">No threads available.</td></tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|