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

{{ $companyRecommendationCategory->title }}

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