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

{{ $practicalExampleCategory->title }}

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