@extends('layouts.admin') @section('title', 'Item Details') @section('page-title', 'Item Details') @section('content')

Item Details

Back to Items
Basic Information
Item Code:
{{ $item->item_code }}
Item Name:
{{ $item->item_name }}
Category:
{{ $item->category }}
HSN Code:
{{ $item->hsn }}
Other Details
Rate:
₹{{ number_format($item->rate, 2) }}
Status:
@if($item->is_active) Active @else Inactive @endif
Created At:
{{ $item->created_at->format('d M Y, h:i A') }}
Last Updated:
{{ $item->updated_at->format('d M Y, h:i A') }}
Description

{{ $item->description ?: 'No description available.' }}

Edit
@csrf @method('DELETE')
@endsection