删除记录然后使用slug和数据返回到同一视图的最佳方法是什么?

时间:2016-06-07 21:37:09

标签: laravel-5.2

我有一个应用程序,其中包含可附加注释的文章。我现在想要为用户提供删除评论的功能。我正在努力的是在删除后将用户返回到相同的视图。

我可以在js中这样做,但我想看看能不能避免它。

文章链接就像这个myapp / articles / 1。 slug(1)是文章id。我使用相同的文章ID传递所有评论。

在我的文章视图中,我有;

@if (count($comments) > 1)
    @foreach ($comments as $comment)
     <p><a href="deleteComment/{{ $comment['id'] }}"><i class="fa fa-trash" aria-hidden="true"></i></a> {{ $comment['details'] }}</p>
    @endforeach
@endif

在我的控制器里,我有;

public function deleteComment($id)
{
    $comment= Comment::where('id', $id)->first();
    $comment->delete();
    return view ('myapp/articles/'); //This is where I am puzzled.  How do I return user to myapp/articles/1?
}

建议?

谢谢!

0 个答案:

没有答案