我试过这种方法,但没有运气,我一直收到错误。
在非对象上调用成员函数delete()
Post::find($id)->delete();
关系:
public function posts()
{
return $this->hasMany('Post');
}
public function user()
{
return $this->belongsTo('User');
}
答案 0 :(得分:0)
使用此解决。
{{ Form::open(array('method'=>'DELETE', 'route'=>array('post.delete', $post->id))) }}