{{-- resources/views/pages/best-practices/categories/show.blade.php --}} @extends('layouts.app') @section('css') @endsection @push('pageTitle') {{ __('labels.best_practice_testimonial_categories') }} @endpush @section('content') @include('components.common.page-header', [ 'pageTitle' => __('labels.best_practice_testimonial_category_details'), 'actionButton' => [ 'url' => route('best-practice-categories.index'), 'text' => __('labels.back_to_list'), ], ])

{{ $bestPracticeCategory->title }}

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