@foreach($journal as $data) @endforeach
{{ __('Account') }} {{ __('Date') }} {{ __('Ref') }} {{ __('Description') }} {{ __('Debit Amount') }} {{ __('Credit Amount') }}
{{$data->account_number}} {{ date(AdminBaseDashboard::format_date(), strtotime($data->created_at)) }} {{$data->reference}} {{$data->description}} {{ Invoice::format_payment($data->debit) }} {{ Invoice::format_payment($data->credit) }}
{{ ('Total')}} {{ Invoice::format_payment($data->sum('debit')) }} {{ Invoice::format_payment($data->sum('credit')) }}