未定义的变量:laravel中的标签

时间:2018-04-17 13:28:52

标签: php laravel

这是我的第一个应用程序。 它总是发生在我所做的每一种方法中。

我的TagController:

 public function destroy($id)
{
    $tag = Tag::find($id);
    $tag->posts()->detach();

    $tag->delete();

    return redirect()->route('tags.index');
}

在我的PostController中:

public function delete(Post $post)
{
    $post->delete();
    $post->tags()->detach();
    return redirect()->route('admin.post.index');
}

在我的索引视图中:

<a class="btn red" method="DELETE" href="{{route('tag.delete',$tag->id) }}">Deletar</a>

我正在为人们打算上传新闻的新闻板制作标签系统。有人能帮我吗?谢谢你!

0 个答案:

没有答案