COM431_serverside_development/resources/views/components/nav-link.blade.php
2025-02-11 11:55:09 +00:00

6 lines
244 B
PHP

@props(['active'=> false])
<a class="{{$active ? '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={{$active ? 'page': 'false'}}
{{$attributes}}
>{{$slot}}</a>