@php $total = 0; @endphp
logo

{{ App\Libraries\AppLibrary::textShortener($company['company_name'], 60) }}

{{ App\Libraries\AppLibrary::textShortener($company['company_address'], 50) }}

{{ trans('all.label.credit_balance_report', [], 'en') }}

@foreach ($users as $user) @php $total += $user->balance; @endphp @endforeach
{{ trans('all.label.name', [], 'en') }} {{ trans('all.label.email', [], 'en') }} {{ trans('all.label.phone', [], 'en') }} {{ trans('all.label.balance', [], 'en') }}
{{ $user->name }} {{ $user->email }} {{ $user->country_code . $user->phone }} {{ App\Libraries\AppLibrary::flatAmountFormat($user->balance) }}
{{ trans('all.label.total', [], 'en') }} {{ App\Libraries\AppLibrary::reportCurrencyAmountFormat($total) }}