@extends('dashboards.vendor.index') @section('content')

Wallet

  • Main Wallet
  • Available Fundss
  • {{ ($user->gender == 'Male') ? 'Mr.' : (($user->gender == 'Female') ? 'Mrs.' : '') }} {{$user->name ?? ''}}

    **** **** **** 1234

  • {{ $payAmounts['availableFunds'] }}.00 $
    • img

      {{ $payAmounts['allFunds'] }}.00 $

      Income
    • img

      {{ $payAmounts['withdrawFunds'] }}.00 $

      Withdraw

Transaction History

@forelse($myTransactions as $transaction) @empty @endforelse
Invoice No# Paid Remaining Admin Commission Total Cost Status Action
{{ $transaction->details->invoice_number ?? '' }}
{{ $transaction->amount_paid ?? 0 }}$ {{ $transaction->amount_remaining ?? 0 }}$ {{ $transaction->admin_commision ?? 0 }}$ {{ $transaction->total_amount ?? 0 }}$ {{ $transaction->status ?? '' }}
No transaction available yet!

Connect Your Account

  • img
  • img
  • img
  • img
  • img
  • img
  • img

Connect with admin stripe account to receive your booking payments


@if (Auth::user()->stripe_account_id != null)

Connected

@else Connect @endif
@endsection