@extends('layouts.users_new') @section('title') Dashboard @stop @section('contents')
Account Number

{{ Auth::user()->accnum }}

Account Type

{{ Auth::user()->acctype }}

Account Balance

${{ number_format(Auth::user()->accbal, 0) }}

Transaction Summary

{{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Budget allocation

--}} {{--

Actual for 01/18 - 05/18

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}

Transaction Summary

Recent Transactions
@if($transactions) @foreach($transactions as $trans) @endforeach @endif
Transaction Date Reference Number Description Credit Balance Debit Credit
{{date('jS \of F Y', strtotime($trans->created_at))}} {{ $trans->ref }} {{ $trans->description }} ${{ number_format($trans->currbal, 0) }} {{ !empty($trans->debit) ? '$'.number_format($trans->debit, 0):'' }} {{ !empty($trans->credit) ? '$'.number_format($trans->credit, 0):'' }}
Recent Transfers
Receiving Bank Receiver Receiver Account Number Swift Amount Transaction Type Description Ref
Receiving Bank Receiver Receiver Account Number Swift Amount Transaction Type Description Ref
@stop @section('page-scripts') @endsection