@extends('admin.layouts.app') @section('title', 'Adjustments โ€” ExtraCash Admin') @section('page-title', 'Adjustments') @section('breadcrumb', 'Admin balance adjustments (credit / debit)') @section('content')

{{ $adjustments->total() }} record(s) ยท platform-wide

@forelse($adjustments as $adj) @empty @endforelse
Date User Direction Amount Reason Admin
{{ $adj->created_at->format('M d, Y H:i') }} {{ $adj->user?->name ?? 'โ€”' }} {{ $adj->user?->email ?? '' }} {{ ucfirst($adj->direction) }} ZMW {{ number_format($adj->amount, 2) }} {{ $adj->reason }} {{ $adj->admin?->name ?? 'โ€”' }}
No adjustments recorded yet
@if($adjustments->hasPages())
{{ $adjustments->links() }}
@endif
@endsection