@props([ 'mode' => 'light', 'url' => '', ]) @php $activeMode = in_array($mode, ['light', 'dark', 'system'], true) ? $mode : 'light'; $themeOptions = [ 'light' => ['label' => 'Light', 'description' => 'Bright workspace'], 'dark' => ['label' => 'Dark', 'description' => 'Low-light workspace'], 'system' => ['label' => 'System', 'description' => 'Follows device'], ]; $themeCopy = [ 'light' => 'Light mode is active.', 'dark' => 'Dark mode is active.', 'system' => 'Following your device setting.', ]; @endphp
Interface theme
{{ $themeCopy[$activeMode] }}