@extends('layouts/contentNavbarLayout') @section('title', 'Dashboard - Analytics') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content')
Wallet
Payout Balance

₹{{ $data['available_balance'] }}

PayIn Balance

₹{{ $data['available_payinbalance'] }}

Freeze Balance

₹{{ $data['freeze_balance'] }}

Reserve Balance

₹{{ $data['reserve_balance'] }}

Company Bank Account

@php $hasActiveAccount = false; @endphp @foreach ($company_accounts as $key => $account) @if ($account->status == 'A') @php $hasActiveAccount = true; @endphp @endif @endforeach @if (!$hasActiveAccount) @endif
S.No Bank Name Branch Name Account Holder Account Number IFSC Status
{{ $loop->iteration }} {{ $account->bank_name }} {{ $account->branch_name }} {{ $account->account_holder_name }} {{ $account->account_number }} {{ $account->ifsc }} Active
No active account found.

Virtual Account For Add Fund

@forelse ($virtualAccounts as $account) @empty @endforelse
S.No Holder Name Bank Name Account Number IFSC Status
{{ $loop->iteration }} Razorpay Software Private Limited {{ $account->bank_name }} {{ $account->account_number }} {{ $account->ifsc }} @if ($account->status === 'A') Active @elseif ($account->status === 'B') Disabled @else Unknown @endif
No virtual account found.
@endsection @section('js') @endsection