All Ways to DELETE Data from MySQL Database in Laravel

A comprehensive guide on various methods to delete data from a MySQL database in Laravel, including Eloquent, Query Builder, and how to implement soft deletes.

In this article, we will explore different methods for deleting data from a MySQL database in Laravel. You will learn how to use Eloquent and Query Builder to perform delete operations, as well as how to use soft deletes to protect data from permanent deletion.

1. Deleting Data with Eloquent

Eloquent is Laravel's powerful ORM that allows you to interact with your database easily and effectively.

Example Code:

use App\Models\Student;

// Delete a record by ID
$student = Student::find(1);
$student->delete();

2. Deleting Data with Query Builder

Query Builder provides a flexible and expressive syntax for interacting with your database.

Example Code:

use Illuminate\Support\Facades\DB;

// Delete a record using Query Builder
DB::table('students')->where('id', 1)->delete();

3. Soft Delete

Soft deletes allow you to "delete" data without actually removing it from the database. The data will be marked as deleted and can be restored later.

Step 1: Adding Soft Delete to the Model

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class Student extends Model
{
    use SoftDeletes;

    protected $dates = ['deleted_at'];
}

Step 2: Deleting Data with Soft Delete

$student = Student::find(1);
$student->delete(); // Data will be marked as deleted

Step 3: Restoring Deleted Data

$student = Student::withTrashed()->find(1);
$student->restore(); // Restore the data

System Requirements:

  • PHP 7.3 or higher
  • Laravel 8.x or 9.x
  • MySQL

How to install Laravel:

composer create-project --prefer-dist laravel/laravel project-name

Tips:

  • Use soft deletes to prevent loss of important data.
  • Double-check before performing delete operations.

Related

How to pass Authentication Header Token when POSTing data to an API in Laravel

A guide on how to pass an Authentication Header Token when POSTing data to an API in Laravel. The article covers how to use Laravel's built-in `HTTP Client` to send a Token along with the data to the API.
How to use nested Where functions in Laravel

This article summarizes the ways to use nested `where` functions in Laravel, helping readers understand how to construct complex queries in their applications.
How to upload multiple images in Laravel

A detailed guide on how to upload multiple images in Laravel, including setting up the upload form, processing data on the server, and storing images.
Guide to implementing Apple ID login in Laravel

A detailed guide on how to integrate Apple ID login into a Laravel application using OAuth2. Learn how to configure your application to connect with Apple services and handle user login via Apple ID.
How to Write Content to an Excel File in Laravel

A step-by-step guide on how to write content to an Excel file in Laravel using the Maatwebsite Excel library, allowing you to easily export data from your Laravel application to an Excel file.
JSON Web Token (JWT) Authentication with Laravel

Step-by-step guide to implementing API authentication using JSON Web Token (JWT) in Laravel. This article covers installation and configuration to secure your web application using token-based authentication.
All ways to insert data into MySQL database in Laravel

Explore different methods to insert data into a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
All ways to SELECT data from a MySQL database in Laravel

Explore various methods to select data from a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
Guide to integrating VNPAY in Laravel with a Sandbox account

A detailed guide on how to integrate VNPAY into a Laravel project using VNPAY's Sandbox account to process online payments, including configuration, payment URL creation, handling callback responses, and creating the interface.
All methods to UPDATE data in a MySQL database using Laravel

A comprehensive guide on how to update data in a MySQL database using Laravel, covering both Eloquent ORM and Query Builder methods.

main.add_cart_success