@extends('layouts.shop') @section('title', 'My Wallet - Delivery Agent') @section('content')
Track your delivery rewards and points balance.
Current Balance
@if($user->wallet_balance >= $settings->delivery_wallet_min_redeem) Eligible for Redemption @else Reach {{ number_format($settings->delivery_wallet_min_redeem) }} pts to redeem @endif
Earning Rate
{{ $settings->delivery_wallet_earn_rate ?? 0 }} Pts / 100 {{ config('app.currency', '₹') }}
| Date | Description | Type | Amount |
|---|---|---|---|
| {{ $transaction->created_at->format('M d, Y') }} {{ $transaction->created_at->format('h:i A') }} |
{{ $transaction->description }}
@if($transaction->reference_id)
Ref ID:
@endif
#{{ $transaction->reference_id }}
|
{{ $transaction->type }} | {{ $transaction->type == 'credit' ? '+' : '-' }}{{ number_format($transaction->amount) }} |
|
No wallet transactions found. Transactions will appear here once you start earning. |
|||