@extends('layouts.base')
@section('title')
{{ $category->name }}
@endsection
@section('content')
{{ number_format($entries->total()) }} {{ \App\Core\Libraries\Helpers::formatEntryWord($entries->total()) }} in
{!! \App\Core\Libraries\TreeFormatting::formatPath(\App\Core\Models\Category::defaultOrder()->ancestorsAndSelf($category->id)) !!}
@if($category->comment)
{!! $category->comment !!}
@endif
@if(auth()->user() && auth()->user()->isContributor())
@endif
@if(auth()->user() && auth()->user()->isAdmin())
@endif
@if(count($entries))
@include('entries.entriestable', ['hide' => ['issue']])
@else
No data.
@endif
@endsection
@push('scripts')
@endpush