@extends('layouts.appNew')
@section('content')
@if(count($errors) > 0)
@foreach($errors->all() as $error)
- {{$error}}
@endforeach
@endif
Deposit History Table
Request Id |
Status |
Account |
Amount |
Details |
Created |
@if($Deposit->count() > 0)
@foreach($Deposit as $row)
{{$row->id}} |
{{$row->status}} |
{{$row->account_id}} |
$ {{$row->amount}} |
{{$row->PaymentMethod->name}} |
{{$row->created_at}} |
@endforeach
@else
No data found |
@endif
Withdraw History Table
Request Id |
Status |
Account |
Amount |
Details |
Created |
@if($withdraw->count() > 0)
@foreach($withdraw as $row)
{{$row->id}} |
{{$row->status}} |
{{$row->account_id}} |
$ {{$row->amount}} |
{{$row->PaymentMethod->name}} |
{{$row->created_at}} |
@endforeach
@else
No data found |
@endif
@endsection