@extends('layouts.shop') @section('title', 'My Wallet') @section('content')
@include('user.partials.sidebar')

Wallet Balance

{{ $user->wallet_balance ?? 0 }} Points

Worth approx ₹{{ number_format(($user->wallet_balance ?? 0) / ((\App\Models\GeneralSetting::firstOrNew()->wallet_exchange_rate ?? 100) ?: 100), 2) }}

Transaction History

@forelse($transactions as $transaction) @empty @endforelse
Date Description Type Points
{{ $transaction->created_at->format('d M Y, h:i A') }} {{ $transaction->description }} @if($transaction->reference_type == 'App\Models\Order') View Order @endif @if($transaction->type == 'credit') Credit @else Debit @endif {{ $transaction->type == 'credit' ? '+' : '-' }}{{ $transaction->amount }}

No wallet transactions yet.

{{ $transactions->links() }}
@endsection