{{$title}}
Here, you can see all the {{$title}} on stizee.
| FullName | User type | Status | Wallet | Merchant Rating | Date |
|
|
|---|---|---|---|---|---|---|---|
| {{$d->name}} | {{$d->email}} | {{$d->is_merchant == 1 ? "Merchant" : "Customer"}} | @php $status = $d->status ?? 'active'; // Default to active if no status field @endphp @if($status == 'active') Active @else Blocked @endif | NGN {{number_format($d->wallet,2)}} |
@if($d->is_merchant == 1)
@php
$rating = isset($d->rating) ? $d->rating : ['average' => 0, 'count' => 0];
@endphp
@if($rating['count'] > 0)
{{ number_format($rating['average'], 1) }} ({{ $rating['count'] }})
@else
No ratings
@endif
@else
N/A
@endif
|
{{$d->created_at}} |
|