@extends('admin.layouts.app') @section('title', 'Gold Items') @section('content')
Manage valuation details for gold items.
| # | Customer | Item Description | Weight Details (gm) | Valuation | Created At | Action |
|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($golditems->currentPage() - 1) * $golditems->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->rate_per_gram, 2) }}
|
{{-- Created At --}}
{{ $item->created_at->format('d M, Y') }} | {{-- Actions --}}|
|
No gold items found. |
||||||