
How To Add SoftDelete With Unique Validation In Laravel
In this tutorial, I will show you how to soft delete record and unique validation in laravel.
In soft delete process, instead of actually removing records from your database, Eloquent can also “soft delete” models. When models are soft deleted, they are not actually removed from your database. Instead, a …
Read More