@extends('layouts.seller.app', ['page' => $menuSeller['wallet']['active'] ?? "", 'sub_page' => $menuSeller['wallet']['route']['balance']['sub_active']]) @section('title', __('labels.wallet_balance')) @section('header_data') @php $page_title = __('labels.wallet_balance'); $page_pretitle = __('labels.seller') . " " . __('labels.wallet'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('seller.dashboard')], ['title' => __('labels.wallet'), 'url' => ''] ]; @endphp @section('seller-content')

{{ __('labels.wallet_balance') }}

{{ __('labels.current_balance') }}

{{ __('labels.available_for_withdrawal') }}
{{$systemSettings['currencySymbol'] ?? ''}}{{ $wallet ? number_format($wallet->balance - $wallet->blocked_balance, 2) : '0.00' }}
@if($requestWithdrawPermission ?? false) @endif

{{ __('labels.wallet_information') }}

{{-- @dd($systemSettings['currencySymbol'])--}}
{{ __('labels.wallet_id') }} {{ $wallet ? $wallet->id : 'N/A' }}
{{ __('labels.blocked_balance') }} {{$systemSettings['currencySymbol'] ?? ''}}{{ $wallet ? $wallet->blocked_balance : '0.00' }}
{{ __('labels.currency') }} {{ $systemSettings['currency'] ?? '' }}
{{ __('labels.last_updated') }} {{ $wallet ? $wallet->updated_at->format('d M Y, H:i') : 'N/A' }}
@endsection