Soft delete is to delete data from database in a way in which it can be recovered in the future rather than permanently deleting the data,
Are soft deletes a good idea or a bad idea? Instead of actually deleting a record in your database, you …
sql database database-design data-modeling soft-deleteWhat is the advantage of doing a logical/soft delete of a record (i.e. setting a flag stating that …
sql database soft-deleteI am trying to implement soft deleting concept. Here is my object: class Post extends Eloquent { /** * The database table used …
laravel laravel-4 eloquent soft-deleteThe following soft delete code works fine for me: $post = Post::find($post_id); $post->delete(); The deleted_at …
laravel eloquent soft-deleteIn Laravel 5.1 is there a nice way to check if an eloquent model object has been soft-deleted? I'm not talking …
php laravel eloquent laravel-5.1 soft-deleteProblem In a web application dealing with products and orders, I want to maintain information and relationships between former employees (…
php mysql database-design soft-deleteI have this invoices table that which has the following structure id | name | amount | deleted_at 2 iMac 1500 | NULL and a …
php laravel laravel-5 eloquent soft-deleteInstalling and using SoftDeleteable behavior extension for Doctrine 2 is quite easy. The problem usually is trying to disable it for …
doctrine-orm symfony soft-deleteI followed the this example to test softdeletable extension on my project running Symfony 2.1.0-DEV. I configured my config.yml …
doctrine-orm soft-delete symfony-2.1SQL has always had a great feature: cascading deletes. You plan it in advance and when it's time to delete …
sql soft-delete