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

{{ $newsCategory->title }}

{{-- Quick Actions --}}
@can('update', $newsCategory) @endcan @can('delete', $newsCategory) @endcan
{{-- METADATA CARDS --}}
{{-- Status Card --}}
{{ __('labels.status') }}
{{ $newsCategory->is_active ? __('labels.active') : __('labels.inactive') }}
@if ($newsCategory->description)
{{ __('labels.description') }}
{!! nl2br(e($newsCategory->description)) !!}
@endif @include('components.meta.stats',[ 'created_at' => $newsCategory->created_at ?? null, 'updated_at' => $newsCategory->updated_at ?? null, 'published_at' => $newsCategory->published_at ?? null, 'is_published' => $newsCategory->is_published ?? null, 'creater' => $newsCategory->author_name ?? __('labels.system'), ]) @endsection