@extends('admin.layouts') @section('title', 'User Management') @section('header') @endsection @section('content')

Shopping Wallet Transaction

Total Amount:
@foreach ($shopWalletIncomes as $index => $shopWalletIncome) @endforeach
SN DATE NAME USER ID NUMBER Type AMOUNT Remark
{{ $index + 1 }} {{ $shopWalletIncome->created_at->format('Y-m-d H:i:s') }} {{ optional($shopWalletIncome->user)->name ?? 'N/A' }} {{ optional($shopWalletIncome->user)->user_id ?? 'N/A' }} {{ optional($shopWalletIncome->user)->phone_number ?? 'N/A' }} {{ $shopWalletIncome->type ?? 'N/A' }} {{ number_format($shopWalletIncome->amount, 2) }} {{ $shopWalletIncome->remark ?? 'N/A' }}
@endsection @section('footer') @endsection