我有PostsController @ destroy,如果用户在某个页面上,程序应该在删除后重定向到索引。如果用户在仪表板页面上,则应重定向到仪表板。我该怎么做?这是PostsController中的摧毁功能
public function destroy($id)
{
$post = Post::find($id);
$post->delete();
return redirect('/')->with('success', 'Post removed!');
}
答案 0 :(得分:0)
我会用以下方法做到这一点:
Property value does not exist on type HTMLElement