1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-11-16 15:33:44 +01:00
my-idlers/resources/views/components/responsive-nav-link.blade.php

12 lines
212 B
PHP
Raw Permalink Normal View History

@props(['active'])
@php
$classes = ($active ?? false)
? 'text-decoration-none'
: 'text-decoration-none';
@endphp
<a {{ $attributes->merge(['class' => $classes]) }}>
{{ $slot }}
</a>