@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.cards')

{{ $user->full_name }} Funds

@include('cms.components.alert', ['with' => 'status', 'class' => 'success'])
@foreach($rows as $row) @endforeach
Amount Description EPG Completed EPG Order ID EPG Description Created At
{{ $row->amount_formated }} {{ $row->description }} @if($row->epg) @if($row->epg_completed) Completed @else Not Completed @endif @endif {{ $row->epg_order_id }} {{ $row->epg_description }} {{ date('d M Y - h:i A', strtotime($row->created_at)) }}
@include('cms.layouts.footers.auth')
@endsection