0

我正在使用 Breeze 构建一个新的 Laravel 应用程序。我想要做的是让经过身份验证的用户 id 将其重定向到配置文件路由,即:

Route::group([
    'prefix' => 'profile',
    'as' => 'profile.',
    'middleware' => ['auth']
], function () {
    Route::get('/{id}',  [ProfileController::class, 'show'])->name('profile');
}
);

但是,在导航的布局上,如下所示,我无法在 :href 上找到它。我已经尝试了一些方法,例如:

:href="{{ route('profile', [Auth::user()->id]) }}"
:href="{{ route('profile',/([Auth::user()->id])) }}"

但它们似乎都不起作用。

navigation.blade.php 下拉部分:

   <x-slot name="content">
                    <x-dropdown-link :href="route('admin.aprovar')">
                                {{ __('Aprovações') }}
                            </x-dropdown-link>
                            <x-dropdown-link>
                                {{ __('Perfil') }}
                            </x-dropdown-link>
                        <!-- Authentication -->
                        <form method="POST" action="{{ route('logout') }}">
                            @csrf

                            <x-dropdown-link :href="route('logout')"
                                    onclick="event.preventDefault();
                                                this.closest('form').submit();">
                                {{ __('Log Out') }}
                            </x-dropdown-link>
                        </form>
                    </x-slot>

任何帮助或提示将不胜感激。谢谢你的时间!

4

1 回答 1

0

感谢@aynber 回答,我需要做的是:

{{ route('profile', ['id' => Auth::user()->id]) }}
于 2022-02-25T19:22:37.770 回答