@php
$currentCategory = null;
@endphp
@foreach($configurations as $config)
@if($currentCategory !== $config->category)
@if($currentCategory !== null)
@endif
{{ ucfirst($config->category) }} Settings
@php
$currentCategory = $config->category;
@endphp
@endif
@if(!$loop->last)
@endif
@endforeach
@if($currentCategory !== null)