auditionadmin/resources/views/components/layout/navbar/nav-link.blade.php

8 lines
334 B
PHP

@props(['active' => false, 'slot'])
@php($classes = $active ? 'bg-indigo-700' : 'hover:bg-indigo-500 hover:bg-opacity-75')
@php($classes .= ' text-white rounded-md px-3 py-2 text-sm font-medium')
<a {{ $attributes->merge(['class' => $classes]) }}
aria-current="{{ $active ? 'page':'false' }}"
{{ $attributes }}
>{{ $slot }}</a>