@extends('layouts.mobile-user') @section('content')
@foreach($fund as $p)
@if($p->status == 0) Pending @elseif($p->status == 1) Completed @else Inconclusive @endif {{ date('d-m-Y h:s A',strtotime($p->created_at)) }}
#{{ $p->transaction_id }}
{{ $p->wallet->name }}
{{ $basic->currency }} {{ number_format($p->amount) }}
{{$p->crypto_amount}}

@endforeach
@endsection