{{-- Left-edge interactive tools dock, quick-launch every calculator. Collapsed to an icon rail; expands labels on hover. Desktop only (mobile reaches the tools through the nav + right-hand actions). --}} @php $dockTools = [ ['href' => route('assessments.show', 'financial-health'), 'icon' => 'heart-pulse', 'label' => 'Financial Health Check', 'path' => 'assessments/financial-health'], ['href' => route('tools.show', 'budget'), 'icon' => 'calculator', 'label' => 'Budget Builder', 'path' => 'tools/budget'], ['href' => route('tools.show', 'debt-payoff'), 'icon' => 'unlink', 'label' => 'Debt Payoff', 'path' => 'tools/debt-payoff'], ['href' => route('tools.show', 'compound-growth'), 'icon' => 'trending-up', 'label' => 'Compound Growth', 'path' => 'tools/compound-growth'], ['href' => route('tools.show', 'emergency-fund'), 'icon' => 'life-buoy', 'label' => 'Emergency Fund', 'path' => 'tools/emergency-fund'], ['href' => route('tools.show', 'wealth-goals'), 'icon' => 'target', 'label' => 'Wealth & Goals', 'path' => 'tools/wealth-goals'], ['href' => route('tools.show', 'loan-cost'), 'icon' => 'receipt', 'label' => 'True Cost of Loans', 'path' => 'tools/loan-cost'], ['href' => route('tools.show', 'retirement'), 'icon' => 'landmark', 'label' => 'Retirement', 'path' => 'tools/retirement'], ['href' => route('tools.show', 'values-clarification'), 'icon' => 'compass', 'label' => 'Values Clarification', 'path' => 'tools/values-clarification'], ]; $dockCurrent = request()->path(); @endphp