Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Jul 2, 2024
1 parent 907a74f commit 7b44100
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions resources/js/Layouts/AuthenticatedLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,21 @@ const links = [
<div class="ms-3 relative">
<Dropdown>
<template #trigger>
{{ $page.props.auth.user.name }}
<button class="cursor-pointer">
{{ $page.props.auth.user.name }}
</button>
</template>

<template #content>
<DropdownLink :as="Link" :href="route('profile.edit')">
<DropdownLink :is="Link" :href="route('profile.edit')">
Profile
</DropdownLink>

<DropdownLink :href="route('home')">
<DropdownLink is="a" :href="route('home')">
Portfolio
</DropdownLink>

<DropdownLink :href="route('logout')" :as="Link">
<DropdownLink :is="Link" :href="route('logout')">
Log Out
</DropdownLink>
</template>
Expand Down

0 comments on commit 7b44100

Please sign in to comment.