{{-- resources/views/news/show.blade.php --}} @extends('layouts.app') @section('css') @endsection @section('js') @endsection @push('pageTitle') {{ __('labels.checklist_category') }} @endpush @section('content') @include('components.common.page-header', [ 'pageTitle' => __('labels.checklist_category'), 'actionButton' => [ 'url' => route('checklist-categories.index'), 'text' => __('labels.back_to_checklist_categories'), ], ]) {{-- News Header --}}

{{ $checklistCategory->title }}

{{-- Quick Actions --}}
@can('update', $checklistCategory) @endcan @can('delete', $checklistCategory) @endcan
{{ __('labels.created_by') }} {{ $checklistCategory->creator->name ?? null, }}
{{-- METADATA CARDS --}}
{{-- Status Card --}}
{{ __('labels.status') }}
{{ $checklistCategory->is_active ? __('labels.active') : __('labels.inactive') }}
@if ($checklistCategory->description)
{{ __('labels.description') }}
{!! nl2br(e($checklistCategory->description)) !!}
@endif @include('components.form.view-metadata',[ 'created_at' => $checklistCategory->created_at ?? null, 'updated_at' => $checklistCategory->updated_at ?? null, ]) @endsection