@extends('user.layouts.master') @section('user_content')
@if(Session::has('transfer_fund')) @elseif(Session::has('transfer_error')) @endif @error('amount')
{{ $message }}
@enderror
@if(Auth::user()->kyc == 0)
Please Complete KYC Verification to activate Transfer
@else

History of Send Coin

@if(Auth::user()->status == 0) @else SEND MIND @include('user.modals.sendbonusmodal') @endif
Available Balance: {{$data['sum_deposit'] ? number_format((float)$data['sum_deposit'], 2, '.', ''). ' MIND' : '00.00 MIND'}}

@foreach($transfer as $row) @if($row->receiver_id != null) @elseif($row->received_from != null) @else @endif @endforeach
# REQUEST DATE FUND TRANSFER TO/FROM DESCRIPTION AMOUNT STATUS
{{$loop->index+1}} {{$row->created_at}} {{$row->receiver->user_name}} {{$row->sender->user_name}}--{{$row->description}} {{$row->amount}} @if($row->status == 'pending') Confirm Transfer @else {{$row->status}} @endif
@endif
@push('scripts') @endpush @endsection