Laravel soft delete example
In this tutorials we will learn how to use soft delete in Laravel 8 When we use soft delete in the project then records are not actually removed from the database. Instead of that timestamp has been assigned to the deleted_at column. I will guide you step by step how to use soft delete in laravel.so…