@extends('layout.with-main-and-sidebar')
@section('breadcrumbs')
{{ __('staff.staff-dashboard') }}
Wiki categories
@endsection
@section('page', 'page__staff-wiki-category--index')
@section('main')
@foreach ($wikiCategories as $category)
| {{ __('common.name') }} |
{{ __('common.created_at') }} |
{{ __('torrent.updated_at') }} |
{{ __('common.actions') }} |
@forelse ($category->wikis as $wiki)
|
{{ $wiki->name }}
|
{{ $wiki->created_at }} |
{{ $wiki->updated_at }} |
|
@empty
| No wikis |
@endforelse
@endforeach
@endsection
@section('sidebar')
{{ __('common.actions') }}
@endsection