9
Il seguente codice di eliminazione morbida funziona bene per me:laravel soft Delete ripristinare() Errore
$post = Post::find($post_id);
$post->delete();
Il campo deleted_at viene aggiornato. Ma questo mi dà un errore:
$post = Post::find($post_id);
$post->restore();
Ecco l'errore:
exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Call to a member function restore() on a non-object'
stumped. Google non è di aiuto finora.
funziona come un fascino. Grazie. – moreirapontocom