{{-- resources/views/news/show.blade.php --}} @extends('layouts.app') @section('css') @endsection @section('js') @endsection @push('pageTitle') {{ __('labels.expert_category') }} @endpush @section('content') @include('components.common.page-header', [ 'pageTitle' => __('labels.category') ." : ". ($expertCategory->name ?? 'N/A'), 'actionButton' => [ 'url' => route('expert-categories.index'), 'text' => __('labels.back_to_list'), ], ])

{{ $expertCategory->name }}

@can('update', $expertCategory) @endcan @can('delete', $expertCategory) @endcan
{{ $expertCategory->is_active ? __('labels.active') : __('labels.inactive') }} @if ($expertCategory->sort_order > 0) {{ __('labels.display_order') }}: {{ $expertCategory->sort_order }} @endif
@if ($expertCategory->description)
{{ __('labels.description') }}
{!! nl2br(e($expertCategory->description)) !!}
@endif @include('components.meta.stats', [ 'created_at' => $expertCategory->created_at ?? null, 'updated_at' => $expertCategory->updated_at ?? null, 'published_at' => $expertCategory->published_at ?? null, 'is_published' => $expertCategory->is_published ?? null, 'creater' => $expertCategory->author_name ?? __('labels.system'), ]) @endsection