Laravel - soft delete - move posts to other table

738 Views Asked by At

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.

1

There are 1 best solutions below

2
On BEST ANSWER

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:

MyModel::deleting(function($model) {
    DeletedItems::create([
        // Your model fields here
    ]);
});

--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:

protected function schedule(Schedule $schedule)
{
    $schedule->call(function () {
        MyModel::withTrashed()
            ->whereDate('deleted_at', '<', Carbon::today()->subMonth())
            ->forceDelete();
    })->daily();
}