@extends('layouts.app') @section('css') @endsection @section('js') @endsection @push('pageTitle') {{ __('labels.industry_groups') }} @endpush @section('content') @include('components.common.page-header', [ 'pageTitle' => __('labels.industry_groups'), 'actionButton' => [ 'url' => route('industry-groups.index'), 'text' => __('labels.back_to_list'), ], ]) @include('components.common.flush-message')

{{ $industryGroup->name }}

@can('update', $industryGroup) @endcan @if($industryGroup->deleted_at) @can('forceDelete', $industryGroup) @endcan @else @can('delete', $industryGroup) @endcan @endif
{{-- METADATA CARDS --}}
{{ __('labels.status') }}
{{ $industryGroup->s_activ ? __('labels.active') : __('labels.inactive') }}
@if ($industryGroup->description)
{{ __('labels.description') }}
{!! nl2br(e($industryGroup->description)) !!}
@endif @include('pages.industry-groups.templates.discussion-threads', [ 'industryGroup' => $industryGroup, ]) @include('components.meta.stats',[ 'created_at' => $industryGroup->created_at ?? null, 'updated_at' => $industryGroup->updated_at ?? null, 'creater' => $industryGroup->creator->name ?? null, 'creator_avatar' => $industryGroup->creator->profile_image ?? null, ]) @endsection @push('js') @endpush