@extends('new_app.header') @section('content')
@if (session('payment-success')) @endif
@csrf @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
💰 आपको जितना पैसा जोड़ना है उतना यहाँ लिखें ✍️👆 और Add Point बटन पर क्लिक करें 👇
ℹ️ आप कम से कम {{ $min_add }} रुपये और अधिकतम {{ $max_add }} रुपये ऐड कर सकते हैं।

Deposit History

{{-- --}} @if ($deposit_trans->count() > 0) @foreach ($deposit_trans as $key => $trans) {{-- --}} @endforeach @else @endif
S No Pay Mode Date PointsClosing BalanceStatus
{{ $key + 1 }} {{ ucfirst($trans->payment_type) }} {{ date('d-m-Y', strtotime($trans->created_at)) }} {{ $trans->r_money }} {{ $trans->closing_balance }} @if ($trans->status == 'pending') Pending @elseif($trans->status == 'accepted') Accepted @else Rejected @endif
No Deposit History Found
@csrf @if (session('error-with'))
{{ session('error-with') }}
@endif
⏱ आपका पैसा 10 से 15 मिनट में पहुंच जाएगा
⚠️ आप सिर्फ जीती हुई राशि ही निकाल सकते हैं।
💸 आप कम से कम {{ $min_with }} रुपये और अधिकतम {{ $max_with }} रुपये निकासी कर सकते हैं।
📝 निकासी अमाउंट भरने के बाद आप नीचे दी गई बैंक डिटेल्स भरें और Withdraw बटन पर क्लिक करें 👇
Win Amount :- ₹ {{ $wallet->win_wallet }}
@error('bank_holder_name')

{{ $message }}

@enderror @error('bank_name')

{{ $message }}

@enderror @error('account_number')

{{ $message }}

@enderror @error('ifsc_code')

{{ $message }}

@enderror

Withdraw History

{{-- --}} @if ($withdraw_trans->count() > 0) @foreach ($withdraw_trans as $key => $trans) {{-- @endforeach @else @endif
S No Pay Mode Date PointsClosing BalanceStatus
{{ $key + 1 }} {{ ucfirst($trans->payment_type) }} {{ date('d-m-Y', strtotime($trans->created_at)) }} {{ $trans->r_money }}{{ $trans->closing_balance }} --}} @if ($trans->status == 'pending') Pending @elseif($trans->status == 'accepted') Accepted @else Failed @endif
No Withdrawal History Found
@endsection