@extends('layout.default')
@section('breadcrumbs')
{{ __('staff.staff-dashboard') }}
Wiki Categories
@endsection
@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