Payment History

@if ($user->payment_history->count()) @php $c=0; @endphp @foreach ($user->payment_history as $o) @if(! isset($limit) OR $c++ > $limit) @break; @endif {{-- @todo Number format should configured by currency --}} @endforeach
Date Amount
{{ $o->payment_date }}{{ number_format($o->total_amt,2) }}
@else

No payments recorded

@endif