Tick a service to include it. Services with vehicle-type variations let you set a promo price per variation.
Services without variations use a single promo price.
@foreach($services as $i => $svc)
@php
$hasVariations = $svc->variations->isNotEmpty();
$oldSvcs = collect(old('services', []));
$oldEntry = $oldSvcs->firstWhere('id', $svc->id);
$checked = $oldEntry !== null;
@endphp
{{-- Service header row --}}
{{-- Variations sub-table (only for services with variations) --}}
@if($hasVariations)
@endif
@endforeach