Files
UNIT3D-Community-Edition/resources/views/wiki/index.blade.php
Roardom fc0a086819 remove: timestamps from wiki and page indexes
Each table align the timestamps differently where it looks weird. "Fix" by removing the timestamps and having each row be a single table cell. The timestamps are still visible on their respective pages.
2025-10-16 05:31:06 +00:00

45 lines
1.3 KiB
PHP

@extends('layout.with-main')
@section('title')
<title>Wikis - {{ config('other.title') }}</title>
@endsection
@section('meta')
<meta name="description" content="{{ config('other.title') }} - Wikis" />
@endsection
@section('breadcrumbs')
<li class="breadcrumb--active">Wikis</li>
@endsection
@section('page', 'page__wiki--index')
@section('main')
@foreach ($wiki_categories as $category)
<section class="panelV2">
<h2 class="panel__heading">
{{ $category->name }}
</h2>
<div class="data-table-wrapper">
<table class="data-table">
<tbody>
@forelse ($category->wikis->sortBy('name') as $wiki)
<tr>
<td>
<a href="{{ route('wikis.show', ['wiki' => $wiki]) }}">
{{ $wiki->name }}
</a>
</td>
</tr>
@empty
<tr>
<td>No wikis in category.</td>
</tr>
@endforelse
</tbody>
</table>
</div>
</section>
@endforeach
@endsection