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
Autoload Composer Dependencies for Faster Performance
This command generates an optimized file that maps all the class names to their corresponding file l...
Route Caching to Enhance Laravel Application's Performance
Enhance route caching to improve your application's performance by speeding up route loading. ``` /...