@extends('layouts.admin') @section('page-title') Admin | Account Top Ups @endsection @section('page-css') @endsection @section('page-content')

Organisation Top Ups

{{-- Alert --}} @include('layouts.alert')
@forelse ($topups as $topup) @empty @endforelse
Organisation Name Balance Before Topup Amount Payment Method Status Admin Name Date Created
{{ $topup->orgInfo->name }} K {{ $topup->current_balance }} K {{ $topup->amount }} {{ $topup->payment_method }} {{ $topup->status }} {{ $topup->userInfo->name }} {{ Carbon\Carbon::parse($topup->created_at)->format('F dS Y') }}
No Data
{{ $topups->links() }}
@endsection @section('page-js') @endsection