@lang('Layout Validation')
@forelse($rowTotals as $row)
@php
$desktopComplete = (int) $row->desktop_total === 100;
$mobileComplete = (int) $row->mobile_total === 100;
@endphp
Row {{ $row->layout_row }} · Desktop {{ (int) $row->desktop_total }}% · Mobile {{ (int) $row->mobile_total }}%
@empty
@lang('No rows yet')
@endforelse
@lang('Target: each row should be exactly 100% for desktop and mobile active types.')