@extends('layouts.app') @section('title', 'Item') @section('content')

Items

Details of item
@include('layouts.alerts')

Code : {{ $item->code }}

Name : {{ $item->name }}

Description : {{ $item->description }}

Average Cost : Rs. {{ number_format($item->avg_cost, 2) }}

UOM : {{ $item->UOM->name }}

Group : @if ($item->Groups->name) {{ $item->Groups->name }} @else n/a @endif

Created : {{ \Carbon\Carbon::parse($item->created_at)->format('d F Y @ h:i a') }}

Last Updated : {{ \Carbon\Carbon::parse($item->updated_at)->format('d F Y @ h:i a') }}

@can('item-edit') Edit @endcan @can('item-delete') @csrf @method('DELETE') @endcan {{-- --}}
@endsection