mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 09:11:10 -05:00
- Added rides index view with search and filter options. - Created rides show view to display ride details. - Implemented API routes for rides. - Developed authentication routes for user registration, login, and email verification. - Created tests for authentication, email verification, password reset, and user profile management. - Added feature tests for rides and operators, including creation, updating, deletion, and searching. - Implemented soft deletes and caching for rides and operators. - Enhanced manufacturer and operator model tests for various functionalities.
27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<nav class="-mx-3 flex flex-1 justify-end">
|
|
@auth
|
|
<a
|
|
href="{{ url('/dashboard') }}"
|
|
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
|
|
>
|
|
Dashboard
|
|
</a>
|
|
@else
|
|
<a
|
|
href="{{ route('login') }}"
|
|
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
|
|
>
|
|
Log in
|
|
</a>
|
|
|
|
@if (Route::has('register'))
|
|
<a
|
|
href="{{ route('register') }}"
|
|
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
|
|
>
|
|
Register
|
|
</a>
|
|
@endif
|
|
@endauth
|
|
</nav>
|