@extends('admin.layouts.app') @section('title', 'Gold Items') @section('content')
{{-- Success Message --}} @if(session('success')) @endif {{-- Error Message --}} @if(session('error')) @endif
{{-- Header --}}
Gold Items

Manage valuation details for gold items.

{{-- Search Filter --}}
Add Gold Item
@forelse ($golditems as $item) {{-- Customer --}} {{-- Description --}} {{-- Weights --}} {{-- Valuation --}} {{-- Created At --}} {{-- Actions --}} @empty @endforelse
# Customer Item Description Weight Details (gm) Valuation Created At Action
{{ $loop->iteration + ($golditems->currentPage() - 1) * $golditems->perPage() }}
{{ $item->customer->brauser_name ?? 'N/A' }}
{{ $item->description }} Qty: {{ $item->quantity }} | Purity: {{ $item->purity }}K
Gross {{ $item->gross_weight }}
Stone {{ $item->stone_weight }}
Net {{ $item->net_weight }}
₹{{ number_format($item->rate_per_gram, 2) }}
{{ $item->created_at->format('d M, Y') }}
@csrf @method('DELETE')

No gold items found.

{{-- Pagination --}} @if($golditems->hasPages()) @endif
{{-- Styles for Soft Buttons --}} @push('styles') @endpush @push('scripts') {{-- SweetAlert2 CDN --}} @endpush @endsection