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