0

我正在尝试使用唯一的 slug 检索用户配置文件。用户登录后,我只能获取数据库中记录的第一个配置文件,而不是登录用户,我不知道为什么?如果我没有登录,我仍然希望能够查看个人资料。

地址栏应为

.app:8000/profile/signedinsuer ,或选定的用户

相反,它总是读取

.app:8000/profile/firstuser 。

我可以手动更改地址栏,其余的都可以正常工作,我得到了正确的视图等。我只是没有得到正确的信息。

路线

Route::group(['prefix' => '/profile'], function () {
    Route::get('/{profile}', 'Profile\ProfileController@index')->name('profile.index');

控制器

class ProfileController extends Controller
{
    public function index(Profile $profile)
    {
        return view('overview.profile.index', [
            'profile' => $profile,
        ]);
    }
}

从刀片

<li>
    <a href="{{ route('profile.index', [$profile]) }}">Profile</a>
</li>

作曲家

class ProfileComposer
{
    public function compose(View $view)
    {
        if (!Auth::check()) {
            return;
        }

        $view->with('profile', Auth::user()->profile->first());

    }
}
4

1 回答 1

0

您可以在以下位置自定义路由模型绑定的查询逻辑RouteServiceProvider

public function boot()
{
    parent::boot();

    Route::bind('profile', function ($value) {
        return App\User::where('profile', $value)->first() ?? abort(404);
    });
}
于 2018-02-10T22:19:47.953 回答