@extends('layouts.organisation') @section('page-title') Organisation | Dashboard @endsection @section('page-content')

Dashboard

{{-- Alert --}} @include('layouts.alert')
Current Balance

{{ number_format($organisation->balance, 2) }}

{{csrf_field()}}

Total Transactions : {{ $transaction_count }}

Recent Transactions

@forelse ($merchant_topups as $transaction) @empty @endforelse
@if($transaction->merchantInfo) {{ $transaction->merchantInfo->fullname }} @else N/A @endif
Merchant
K {{ $transaction->amount }}
Amount
{{ $transaction->created_at }}
Date
@endsection @section('page-js') @endsection