Future SoftDeletes Trait in Laravel 8

Laravel provides the built-in feature that allows us to flag database rows as deleted without physically deleting them from the database. The issue with this feature is that it only returns rows where deleted_at is null. We have been working on a project where the database rows are managed by an already built application developed […]