Files
Nexora/resources/views/components/nav-link.blade.php
Javi 356f56eebd
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
first commit
2025-04-23 00:14:33 +06:00

9 lines
279 B
PHP

@props(['href', 'active' => false])
<a href="{{ $href }}" {{ $attributes->class([
'flex items-center px-4 py-2 text-sm transition-colors',
'bg-gray-900 text-white' => $active,
'text-gray-300 hover:bg-gray-700 hover:text-white' => !$active
]) }}>
{{ $slot }}
</a>