@extends('user.layouts.master') @section('user_content')
@if(Session::has('transfer_fund')) @elseif(Session::has('transfer_error')) @endif

MUSD Transfer History

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

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach($transfer as $row) @endforeach
# Transfer Date MUSD Transfer To Description Type Amount Status
{{$loop->index+1}} {{$row->created_at}} @if($row->receiver_id != null) {{$row->receiver->user_name}} @else -- @endif {{$row->description}} {{$row->method}} {{$row->amount}} @if($row->status == 'pending') Confirm Transfer @else {{$row->status}} @endif
@push('scripts') @endpush @endsection