@php $cards = [ [ 'label' => 'Influencers', 'value' => number_format((float) ($metrics['influencers'] ?? 0), 0, ',', '.'), 'description' => 'ativos na operação', 'icon' => '✨', 'tone' => 'from-slate-950 to-slate-800 text-white', ], [ 'label' => 'Pedidos pagos', 'value' => number_format((float) ($metrics['orders_paid'] ?? 0), 0, ',', '.'), 'description' => 'vendas válidas', 'icon' => '🛍️', 'tone' => 'from-emerald-600 to-teal-600 text-white', ], [ 'label' => 'Vendas', 'value' => 'R$ '.number_format((float) ($metrics['sales_amount'] ?? 0), 2, ',', '.'), 'description' => 'base de pedidos pagos', 'icon' => '📈', 'tone' => 'from-amber-500 to-orange-500 text-white', ], [ 'label' => 'Previstas', 'value' => 'R$ '.number_format((float) ($metrics['forecasted_commission'] ?? 0), 2, ',', '.'), 'description' => 'aguardando validação', 'icon' => '⏳', 'tone' => 'from-white to-slate-50 text-slate-950', ], [ 'label' => 'Aprovadas', 'value' => 'R$ '.number_format((float) ($metrics['approved_commission'] ?? 0), 2, ',', '.'), 'description' => 'prontas para fechamento', 'icon' => '✅', 'tone' => 'from-white to-slate-50 text-slate-950', ], [ 'label' => 'Pagas', 'value' => 'R$ '.number_format((float) ($metrics['paid_commission'] ?? 0), 2, ',', '.'), 'description' => 'já quitadas', 'icon' => '💰', 'tone' => 'from-white to-slate-50 text-slate-950', ], ]; @endphp