Files
Nexora/resources/views/components/nav-link.blade.php

9 lines
279 B
PHP
Raw Normal View History

2025-04-23 00:14:33 +06:00
@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>