-1

Now if the item is deleted it is removed from the list.

Is there any possibility to display deleted items in sonata project list?

1 Answers1

0

Hard to answer without code. But SonataAdminORMBundle is adding a new attribute to your entity. A soft delete is just passing the property enabled to false. So if you want to print all your deleted projects, just make a request on your project repository on enabled = 0.

Julien Bourdic
  • 1,398
  • 1
  • 12
  • 29