@extends('layouts.user')
@section('content')
Welcome {{ $user->username }}
Balance: ${{ $balance }}
Total Spent: ${{ $totalSpent }}
Recent Orders
@foreach($recentOrders as $order) - Order #{{ $order->id }} - {{ $order->status }}
@endforeach
@endsection