@extends('layouts.app')
@section('title', 'Transaction History')
@section('content')
Transaction History
@forelse($transactions ?? [] as $tx)
{{ Str::headline($tx->type) }}
{{ $tx->created_at->format('M j, Y g:i A') }}
{{ $tx->points_delta >= 0 ? '+' : '' }}{{ number_format($tx->points_delta) }} Pts
@empty
No transactions yet.
@endforelse
{{ $transactions->links() ?? '' }}
@endsection