@foreach($latestIncomes as $item)
{{ Date::parse($item->paid_at)->format($date_format) }}
{{ $item->customer_name ? $item->customer_name : trans_choice('general.invoices', 2) }}
@money($item->amount, $item->currency_code, true)
@endforeach
@if(count($latestIncomes) == 0)
No Data
@endif