Keep Data Without Deleting It: Using Laravel Soft Delete
Laravel Soft Delete lets "delete" records without actually removing them from the database. This can be useful when you want to keep data for future recovery.
Step 1: Enable Soft Deletes in Your Model
Add SoftDeletes to your model. Let's take an example with a Post model.
use Illuminate\Database\Eloquent\Model;
// include this line
use Illuminate\Database\Eloquent\SoftDeletes;
class Post extends Model
{
use SoftDeletes;
}Step 2: Add the Deleted At Column to Your Table
Run a migration to add a deleted_at column(if already not exist). This column keeps track of when a record is "deleted."
php artisan make:migration add_deleted_at_to_posts_table --table=postsReplace --table=posts with name of your table
In the migration file:
public function up()
{
Schema::table('posts', function (Blueprint $table) {
$table->softDeletes();
});
}Step 3: Use Soft Delete in Your Application
Now, you can "soft delete" a record:
$post = Post::find(1);
$post->delete(); // Soft deleteTip: To restore it:
$post->restore(); // Restore the "deleted" postTo get only soft-deleted records:
$trashedPosts = Post::onlyTrashed()->get();Laravel Soft Delete is an easy way to keep records without permanently deleting them, adding flexibility to your app's data management.
You Might Also Like
Handling Dates with Carbon Date Helpers
# Example 1: Getting the Current Date and Time You can easily get the current date and time using Ca...
Optimize Queries with Eager Loading
Reduce the number of database queries by using Eager Loading. Eager Loading helps you load related m...