以下软删除代码对我来说很好用:
$post = Post::find($post_id);
$post->delete();
deleted_at 字段已更新。但这给了我一个错误:
$post = Post::find($post_id);
$post->restore();
这是错误:
exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Call to a member function restore() on a non-object'
我难住了。到目前为止,谷歌没有帮助。