{{-- resources/views/storefront/wallet.blade.php --}} @extends('storefront.layout') @section('title', trans_key('storefront.pageTitles.wallet').' - '.config('app.name', 'FreshMart')) @section('content') @php $balance = (float) ($wallet?->balance ?? 0); $holdBalance = (float) ($wallet?->hold_balance ?? 0); $transactions = $wallet?->transactions ?? collect(); @endphp
Use wallet balance during checkout whenever enabled.
{{ optional($transaction->created_at)->format('d M Y, h:i A') }}
Your wallet history will appear here.