@extends('layouts.admin') @section('content')

{{$page_title}}

@php $i = 0;@endphp @foreach($fund as $p) @php $i++;@endphp @endforeach
Sl No Date Time Payment Type Transaction ID Payment Amount Rate Status
{{ $i }} {{ date('d-F-Y H:s:i A',strtotime($p->created_at)) }} {{$p->wallet->name}} # {{ $p->transaction_id }} {{ $p->amount }} - USD 1 USD = {{ $p->rate }} - {{ $basic->currency }} @if($p->status == 0) Pending @elseif($p->status == 1) Success @elseif($p->status == 2) Refunded @endif
@endsection @section('scripts') @endsection