@if(session('success'))
{{ session('success') }}
@endif
{{-- ════════ Top toolbar: nav de vistas en 2 EJES + acciones ════════ --}}
🛒 Eje Comercial (lo que se publica en bewpro.com)
⚙️ Eje Técnico (cores que se provisionan)
{{-- ════════ VIEW: OVERVIEW (default — tabla plana con todas las columnas) ════════ --}}
@if($view === 'overview')
@include('modules.clients.reseller.factory._overview', ['overview' => $overview, 'overviewFilters' => $overviewFilters])
{{-- ════════ VIEW: BY-AXIS (mesa de trabajo cross-product por eje) ════════ --}}
@elseif($view === 'by-axis' && $byAxis)
@include('modules.clients.reseller.factory._by_axis', ['data' => $byAxis])
{{-- ════════ VIEW: LAUNCH QUEUE (la palanca operativa por core) ════════ --}}
@elseif($view === 'launch' && $launch)
@include('modules.clients.reseller.factory._launch', ['data' => $launch])
{{-- ════════ VIEW: FOCUS (los productos vendibles — los 11) ════════ --}}
@elseif($view === 'focus' && $focus)
@include('modules.clients.reseller.factory._focus11', ['data' => $focus, 'today' => $today])
{{-- ════════ VIEW: TIERS (espejo de realidad) ════════ --}}
@elseif($view === 'tiers' && $tiers)
@include('modules.clients.reseller.factory._tiers', ['data' => $tiers])
{{-- ════════ VIEW: MATRIX ════════ --}}
@elseif($view === 'matrix' && $matrix)
@include('modules.clients.reseller.factory._matrix', ['matrix' => $matrix])
{{-- ════════ VIEW: LIST (flatten del board) ════════ --}}
@elseif($view === 'list')
| Producto / Concept |
Stage |
Health |
Misiles |
Demanda |
Acción |
@foreach($flatList as $item)
|
@if($item['type'] === 'concept')
@else
@endif
{{ $item['name'] }}
{{ $item['slug'] }}
|
{{ $item['stage_label'] }} |
@if($item['health_pct'] !== null)
{{ $item['health_pct'] }}%
@else
—
@endif
|
{{ $item['misiles'] ?: '—' }} |
{{ $item['demand'] ?: '—' }} |
Ver ficha
|
@endforeach
{{-- ════════ VIEW: BOARD (kanban concepts — pipeline ideación) ════════ --}}
@elseif($view === 'board' && $board)
@include('modules.clients.reseller.factory._board', [
'board' => $board,
'summary' => $summary,
'priority' => $priority,
'actions' => $actions,
])
{{-- ════════ VIEW: DEMOS (Seguimiento y Auditoría de Demos Deluxe) ════════ --}}
@elseif($view === 'demos' && $demos)
@include('modules.clients.reseller.factory._demos', ['data' => $demos])
@endif