@extends('layouts.app') @section('title', 'Dashboard — Financial OS') @section('content') @php $user = Auth::user(); @endphp {{-- Welcome --}}

Welcome back, {{ explode(' ', trim($user->full_name))[0] }}

Your Financial Command Center is ready.

{{-- Quick Stats --}}
Base Currency

{{ $user->base_currency }}

Account Status

Active

Member Since

{{ $user->created_at->format('M Y') }}

Plan

{{ optional($user->tenant)->subscription_status === 'active' ? 'Premium' : 'Free' }}

{{-- Quick Actions --}}
Add Transaction
Budget Planner
AI Copilot
Reports
@endsection