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