@php $options = @get_all_opts(); @endphp
@foreach ($options as $key => $value) @if ($value !== 'enabled' && $value !== 'disabled')
{{ ucfirst(str_replace('_', ' ', $key)) }}
@endif @endforeach
@foreach ($options as $key => $value) @if ($value === 'enabled' || $value === 'disabled')
{{ ucfirst(str_replace('_', ' ', $key)) }}
@endif @endforeach
Save Settings