#{{ $row->user_id ?? 'N/A' }}
{{ optional($row->user)->name ?? 'Deleted User' }}
|
{{ strtoupper($row->coin_type ?? 'N/A') }}
|
{{ number_format($row->coin_amount ?? 0) }}
|
@if(!empty($row->seller_username))
{{ $row->seller_username }}
@endif
@if(!empty($row->coupon_code))
Coupon:
{{ $row->coupon_code }}
@endif
@if(empty($row->seller_username) && empty($row->coupon_code))
N/A
@endif
|
@if(!empty($row->screenshot))
@else
No Image
@endif
|
@if($row->created_at)
{{ $row->created_at->format('Y-m-d H:i') }}
@else
N/A
@endif
|
@if(($row->status ?? '') === 'pending')
@elseif(($row->status ?? '') === 'approved')
Approved
@elseif(($row->status ?? '') === 'rejected')
Rejected
@else
Unknown
@endif
|
@if(($row->status ?? '') === 'pending')