Originally posted @ https://codeanddeploy.com visit and download the sample code: https://codeanddeploy.com/blog/laravel/delete-record-in-laravel-8 In this short post, I will share simple methods for deleting records in Laravel 8 with examples. #deleting-examples Deleting Examples: Single delete with Laravel query builder: DB::table('posts')->where('id', 1)->delete(); Enter fullscreen mode