Is it possible work with Laravel, that it can have soft deleted items in other identical log table? All soft deleted files in other table.
I want create on log table Event scheduler (http://dev.mysql.com/doc/refman/5.6/en/events-overview.html) to delete all data after some time.
A few different ways to accomplish this. If you want to insert deleted items into another table then register a model listener on the models you want this action to happen for on the deleting event:
--OR--
If you want to actually delete items out of the database after a period of time since they have been soft deleted I would suggest using a Scheduled Task. Since soft deleting gives you a time stamp you can reference that in your task.
For example, the following will remove all models that have been soft deleted for more than a month: