annotate resources/views/components/nav-link.blade.php @ 2:90296614b7e2 default tip

Adding in the base for the clients table
author luka
date Thu, 28 Aug 2025 20:55:40 -0400
parents 9d7dcd54c677
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
1 @props(['active'])
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
2
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
3 @php
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
4 $classes =
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
5 $active ?? false
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
6 ? 'inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out'
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
7 : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out';
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
8 @endphp
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
9
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
10 <a {{ $attributes->merge(['class' => $classes]) }}>
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
11 {{ $slot }}
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
12 </a>