@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_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' }} |