@extends('portal.layouts.app') @section('title', 'Settings') @section('subtitle', 'Operational switches that take effect without a deployment') @section('content')
@csrf @foreach ($groups as $group => $settings)
@foreach ($settings as $setting)
@if ($setting->type === 'boolean') @elseif ($setting->type === 'text') @else @endif @if ($setting->description)

{{ $setting->description }}

@endif
@endforeach
@endforeach
@endsection