@extends('layouts.simple.master') @section('title', 'View Company Category') @section('css') @endsection @section('main_content')

Company Category Details

@php $locale = app()->getLocale(); $categoryName = $companyCategory->name && is_array($companyCategory->name) ? ($companyCategory->name[$locale] ?? $companyCategory->name['en'] ?? $companyCategory->name['ar'] ?? 'N/A') : ($companyCategory->name ?? 'N/A'); @endphp
Name:{{ $categoryName }}
Created At: {{ $companyCategory->created_at->format('Y-m-d H:i:s') }}
Updated At: {{ $companyCategory->updated_at->format('Y-m-d H:i:s') }}
@endsection