gpt4 book ai didi

php - Laravel - 带有 ID 和 slugs 的 URLs - 链接到某物的便捷方式

转载 作者:搜寻专家 更新时间:2023-10-31 21:53:22 25 4
gpt4 key购买 nike

我有一个博客,其中包含从我网站的不同部分链接到的评论。要链接到评论,请先查看我的路由文件。

我的路线文件:

    Route::group(['prefix' => '{id}/{slug}'], function () {
Route::get('/', 'BlogController@show')->name('blog.show');
Route::get('edit', 'BlogController@edit')->name('blog.edit');
Route::post('edit', 'BlogController@save')->name('blog.edit.save');
Route::get('comments/{id}', 'BlogController@commentEdit')->name('blog.comments.edit');
Route::post('comments/{id}', 'BlogController@commentSave')->name('blog.comments.save');
}

问题不在于路线。这是观点和形式。要链接到单个评论,我必须这样做。

    <a href="{{ route('blog.comments.edit', [$comment->blog->id, $comment->blog->slug, $comment->id]) }}"> View Comment </a>

如您所见,尝试链接到评论是一件很痛苦的事情。我怎样才能做得更好?想象一下,我的网站上有 20 个。

谢谢!

最佳答案

您可以将其委托(delegate)给您的评论模型。

在您的 Comment 模型中:

public function getUrlParams() {
return [
$this->blog->id,
$this->blog->slug,
$this->id
];
}

那么在你看来:

  <a href="{{ route('blog.comments.edit', $comment->getUrlParams()) }}"> View Comment </a>

关于php - Laravel - 带有 ID 和 slugs 的 URLs - 链接到某物的便捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36804760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com