@extends('dashboard.layouts.app')
@section('title', __('dashboard.View Item Category'))
@section('page_heading', __('dashboard.View Item Category'))
@section('breadcrumb')
{{ __('dashboard.Home') }}
{{ __('dashboard.Item Categories') }}
{{ __('dashboard.View Item Category') }}
@endsection
@section('content')
{{ $itemCategory->getTranslation('name', 'en') }}
{{ $itemCategory->getTranslation('name', 'ar') }}
{{ $itemCategory->code }}
{{ $itemCategory->parent ? $itemCategory->parent->name : __('dashboard.No Parent') }}
{{ $itemCategory->getTranslation('description', 'en') }}
{{ $itemCategory->getTranslation('description', 'ar') }}
{{ $itemCategory->is_active ? __('dashboard.Yes') : __('dashboard.No') }}
@endsection