When I format my HTML like the following:
<a
{{ $attributes }}
class="{{ request()->is( '/' ) ? 'bg-gray-900 text-white' : 'text-gray-300 hover:bg-gray-700 hover:text-white' }} rounded-md px-3 py-2 text-sm font-medium"
aria-current="{{ request()->is( '/' ) ? 'page' : 'false' }}">
{{ $slot }}
</a>
Devsense formats it like this:
<a {{ $attributes }} class="{{ request()->is( '/' ) ? 'bg-gray-900 text-white' : 'text-gray-300 hover:bg-gray-700 hover:text-white' }} rounded-md px-3 py-2 text-sm font-medium" aria-current="{{ request()->is( '/' ) ? 'page' : 'false' }}">
{{ $slot }}
</a>
I turned off Devsense and it works, but I can't find anything relevant to turning this off. Is there a way to turn this off?