@extends('layouts.app') @section('content')
@forelse ($spot_price as $gold) @empty @endforelse
Purity Buy Price per Gram Sell Price per Gram Status Approved By Last Updated Action
{{ $gold->purity }}
RM {{ number_format($gold->ask_price ?? 0, 2) }}
RM {{ number_format($gold->bid_price ?? 0, 2) }}
@switch((int) $gold->status) @case(2) Pending Approval @break @case(1) Approved @break @default {{ $gold->status ?? '-' }} @endswitch
{{ $gold->approve_by ?? '-' }}
{{ $gold->updated_at?->format('d M Y, h:i A') ?? '-' }}
No records found.
@endsection @section('styles') @endsection @section('scripts') @endsection