@extends('dashboard.admin.layout') @section('title', 'Manual Profits') @section('page_subtitle', 'Profit adjustments displayed first, with create actions moved into modal flow.') @section('content')
Profit History

Review manually credited profits and create new entries from the modal trigger.

@forelse($entries as $entry) @empty @endforelse
IDUserAmountStatusDate
{{ $entry->id }} {{ $entry->user->email ?? '-' }} {{ number_format($entry->amount, 8) }} {{ ucfirst($entry->status) }} {{ $entry->created_at->format('Y-m-d H:i') }}
No manual profits yet.
{{ $entries->links() }}
@endsection