@extends('layouts/contentNavbarLayout')
@section('title', 'Dashboard - Analytics')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('page-script')
@endsection
@section('content')
Payout Balance
₹{{ $data['available_balance'] }}
PayIn Balance
₹{{ $data['available_payinbalance'] }}
Freeze Balance
₹{{ $data['freeze_balance'] }}
Reserve Balance
₹{{ $data['reserve_balance'] }}
Company Bank Account
| S.No |
Bank Name |
Branch Name |
Account Holder |
Account Number |
IFSC |
Status |
@php $hasActiveAccount = false; @endphp
@foreach ($company_accounts as $key => $account)
@if ($account->status == 'A')
@php $hasActiveAccount = true; @endphp
| {{ $loop->iteration }} |
{{ $account->bank_name }} |
{{ $account->branch_name }} |
{{ $account->account_holder_name }} |
{{ $account->account_number }} |
{{ $account->ifsc }} |
Active
|
@endif
@endforeach
@if (!$hasActiveAccount)
| No active account found. |
@endif
Virtual Account For Add Fund
| S.No |
Holder Name |
Bank Name |
Account Number |
IFSC |
Status |
@forelse ($virtualAccounts as $account)
| {{ $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
|
@empty
|
No virtual account found.
|
@endforelse
@endsection
@section('js')
@endsection