@php $id = $getId(); $statePath = $getStatePath(); $isDisabled = $isDisabled(); $onLabel = $getOnLabel(); $offLabel = $getOffLabel(); $onColor = $getOnColor() ?? 'primary'; $offColor = $getOffColor() ?? 'danger'; $buttons = [ 'on' => [$onColor, $onLabel, true], 'off' => [$offColor, $offLabel, false] ]; @endphp
@foreach ($buttons as $key => [$color, $label, $value]) @endforeach