@extends('web.profile.profile-master') @section('my-wallet') {{-- add balance --}} {{-- end balance --}}

{{ __('My Wallet') }}

{{ __('Note') }} *

{{ __('Thanks to Coerzs outstanding SEO services, weve witnessed a remarkable improvement in our search engine rankings. Their expertise in keyword strategy and content optimization has led to a surge in organic traffic to our site.') }}

{{ __('$' . number_format($wallet->balance ?? 0, 2)) }}

{{ __('Wallet Remaining Balance') }}

{{ __('Add Balance') }}

{{ __('$' . number_format($wallet->balance ?? 0, 2)) }}

{{ __('Wallet Remaining Balance') }}

{{ __('Add Balance') }}

{{ __('Transaction History') }}

@forelse ($transactions as $transaction)
{{ __('Transaction ID') }}
{{ $transaction->identifier }}
{{ __('Name') }}
{{ $transaction->user->name }}
{{ __('Payment Method') }}
{{ $transaction->payment_method->name ?? 'N/A' }}
{{ __('Amount') }}
${{ number_format($transaction->amount, 2) }}
{{ __('Date') }}
{{ $transaction->created_at->format('d/m/Y') }}
{{ __('Status') }}
@if ($transaction->status === 'pending') Pending @else {{ ucfirst($transaction->status) }} @endif
@empty
{{ __('No Transaction Found') }}
@endforelse {{-- Pagination --}} @if ($transactions->count())
{{ $transactions->links() }}
@endif
@endsection @push('script') @endpush