@extends('admin.layouts.app') @section('title', 'Gold Items') @section('content')
Manage valuation details for gold items.
| # | ledger_folio_no | Item Description | Weight Details (gm) | Valuation | Created At | Action |
|---|---|---|---|---|---|---|
| {{-- FIX: Changed $golditems to $items --}} {{ $loop->iteration + ($items->currentPage() - 1) * $items->perPage() }} | {{-- Customer --}}
|
{{-- Description --}}
{{ $item->description }}
Qty: {{ $item->quantity }}
|
Purity: {{ $item->purity }}K
|
{{-- Weights --}}
Gross
{{ $item->gross_weight }}
Stone
{{ $item->stone_weight }}
Net
{{ $item->net_weight }}
|
{{-- Valuation --}}
₹{{ number_format($item->market_value, 2) }}
Rate: ₹{{ number_format($item->rate_per_gram, 2) }}/gm
|
{{-- Created At --}}
{{ $item->created_at->format('d M, Y') }} | {{-- Actions --}}|
|
No gold items found. |
||||||