{{-- GEAS_COMPTABLE_v2 --}} {{-- :::comparison-table columns: [Feature, GE-AS, Tactical Arbitrage, SellerAmp] highlight: 1 (optional: index of column to highlight, default 1 for GE-AS) rows: - [Starting capital, "$50", "$60/mo", "$97/mo"] - [AI trading plans, true, false, false] - [Copy trading, true, false, false] ::: Cell values of `true`/`false` render as green check / red dash. --}} @php $columns = $columns ?? []; $rows = $rows ?? []; $highlight = (int) ($highlight ?? 1); $caption = $caption ?? null; @endphp @if(!empty($columns) && !empty($rows))
@foreach($columns as $ci => $col) @endforeach @foreach($rows as $ri => $row) @foreach($row as $ci => $cell) @endforeach @endforeach @if($caption) @endif
{{ $col }}
@if($cell === true || $cell === 'true') @elseif($cell === false || $cell === 'false') @else {!! $cell !!} @endif
{{ $caption }}
@endif