mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-18 11:23:30 -05:00
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.
45 lines
1.3 KiB
PHP
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
|