@use('app\Helpers\Helpers') @use('App\Enums\SymbolPositionEnum') @extends('frontend.layout.master') @push('css') @endpush @section('title', 'Wallet') @section('breadcrumb') @endsection @section('content')
@includeIf('frontend.account.sidebar')

{{ __('frontend::static.account.my_wallet') }} @if (Helpers::getDefaultCurrency()->symbol_position === SymbolPositionEnum::LEFT) {{ Helpers::getDefaultCurrencySymbol() }}{{ auth()?->user()?->wallet?->balance ?? 00 }} @else {{ auth()?->user()?->wallet?->balance ?? 00 }} {{ Helpers::getDefaultCurrencySymbol() }} @endif

{{ __('frontend::static.account.transactions') }}

{!! $dataTable->table() !!}
@php $paymentMethods = Helpers::getActiveOnlinePaymentMethods() ?? []; @endphp @endsection @push('js') {!! $dataTable->scripts() !!} @endpush