search
HomePHP FrameworkLaravellaravel5.2 batch deletion
laravel5.2 batch deletionMay 20, 2023 pm 04:26 PM

Laravel 5.2 is a modern PHP framework that is loved by many developers. In Laravel, adding, deleting, checking and modifying data is a very common operation, and batch deletion is no exception. This article will introduce how to batch delete data using Laravel 5.2.

  1. Preparation

Before we begin, we need to create a sample project to demonstrate the operation of batch deletion of data. Enter the following command in the command line:

laravel new batch-delete-example

Then enter the project directory and run the following command to create a data table named posts:

php artisan make:model Post -m

Then add the following code in the Post model:

<?php

namespace App;

use IlluminateDatabaseEloquentModel;

class Post extends Model
{
    protected $fillable = ['title', 'content'];
}

Fill in some sample data in the fill file DatabaseSeeder.php:

<?php

use IlluminateDatabaseSeeder;

class DatabaseSeeder extends Seeder
{
    public function run()
    {
        factory(AppPost::class, 10)->create();
    }
}

Finally run the following command to populate the data:

php artisan migrate --seed
  1. Delete data in batches

In Laravel, we can use the delete method provided by Eloquent to delete records.

If we want to delete a single record, we can do this:

$post = Post::find(1);
$post->delete();

But what if we want to delete multiple records in batches? At this time we can use the whereIn method, which can receive an array, query the records that meet the conditions in the specified field and delete them.

Let’s take a look at the basic syntax first:

Post::whereIn('id', $ids)->delete();

Among them, $ids is an array containing multiple id values, representing the id value of the record we want to delete.

For example, if we want to delete three records with IDs 1, 3, and 5, we can do this:

$ids = [1, 3, 5];
Post::whereIn('id', $ids)->delete();

Of course, we can also delete records based on other conditions. For example, if we want to delete all records created earlier than 2022, we can do this:

Post::where('created_at', '<', '2022-01-01 00:00:00')->delete();

It should be noted that using the whereIn method will automatically be converted into a delete statement, so it will not retrieve all records that meet the criteria and delete them individually. Instead, these records will be deleted directly at the database level, so use with caution.

  1. Confirm deletion operation

When we use the delete method to delete a record, Laravel does not provide a confirmation operation, which means that once the deletion operation is performed, it cannot be undone.

If we want to confirm the user's deletion operation, we can add a confirmation pop-up window on the front end or a confirmation box on the back end to let the user confirm whether they want to delete the record.

In this article, we use SweetAlert to create a confirmation pop-up window.

First, run the following command in the command line to install SweetAlert:

npm install sweetalert2

Then add the SweetAlert CSS and JS files in app.blade.php:

<!DOCTYPE html>
<html>
    <head>
        <title>Laravel</title>
        <link rel="stylesheet" type="text/css" href="{{ asset('css/app.css') }}">
        <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/sweetalert2@10.16.0/dist/sweetalert2.min.css">
        <script src="{{ asset('js/app.js') }}"></script>
        <script src="https://cdn.jsdelivr.net/npm/sweetalert2@10.16.0/dist/sweetalert2.min.js"></script>
    </head>
    <body>
        @yield('content')
    </body>
</html>

Then in Add the following code to the blade template:

<form method="post" action="{{ route('posts.destroy', $post->id) }}" style="display: inline-block;">
    @csrf
    @method('DELETE')
    <button type="submit" class="btn btn-danger btn-sm"
        onclick="event.preventDefault();
        Swal.fire({
            title: '确定删除吗?',
            icon: 'warning',
            showCancelButton: true,
            confirmButtonText: '确认删除',
            cancelButtonText: '取消'
        }).then((result) => {
            if (result.value) {
                this.parentElement.submit();
            }
        });"
    >删除</button>
</form>

In it, we define an event for clicking the delete button, which will pop up a confirmation pop-up window when the user clicks the delete button. If the user clicks the confirm button, JavaScript submits the form and deletes the corresponding record.

It should be noted that in the form form of the deletion operation, we added @csrf and @method('DELETE'). This is because the deletion operation in Laravel needs to be submitted through the HTTP DELETE method. The browser only supports GET and POST methods, so you need to use hidden input to specify the request method.

Unless necessary, we should try to avoid using batch deletion operations, because it may lead to irreparable loss of data. If you need to delete a single record, you can use the delete method provided by Eloquent, which will ask the user to confirm the deletion before deleting the record. If you need to delete multiple records, you can use the whereIn method, but be careful to confirm before use.

The above is the detailed content of laravel5.2 batch deletion. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to Build a RESTful API with Advanced Features in Laravel?How to Build a RESTful API with Advanced Features in Laravel?Mar 11, 2025 pm 04:13 PM

This article guides building robust Laravel RESTful APIs. It covers project setup, resource management, database interactions, serialization, authentication, authorization, testing, and crucial security best practices. Addressing scalability chall

How to Implement OAuth2 Authentication and Authorization in Laravel?How to Implement OAuth2 Authentication and Authorization in Laravel?Mar 12, 2025 pm 05:56 PM

This article details implementing OAuth 2.0 authentication and authorization in Laravel. It covers using packages like league/oauth2-server or provider-specific solutions, emphasizing database setup, client registration, authorization server configu

How do I use Laravel's components to create reusable UI elements?How do I use Laravel's components to create reusable UI elements?Mar 17, 2025 pm 02:47 PM

The article discusses creating and customizing reusable UI elements in Laravel using components, offering best practices for organization and suggesting enhancing packages.

How can I create and use custom validation rules in Laravel?How can I create and use custom validation rules in Laravel?Mar 17, 2025 pm 02:38 PM

The article discusses creating and using custom validation rules in Laravel, offering steps to define and implement them. It highlights benefits like reusability and specificity, and provides methods to extend Laravel's validation system.

What Are the Best Practices for Using Laravel in a Cloud-Native Environment?What Are the Best Practices for Using Laravel in a Cloud-Native Environment?Mar 14, 2025 pm 01:44 PM

The article discusses best practices for deploying Laravel in cloud-native environments, focusing on scalability, reliability, and security. Key issues include containerization, microservices, stateless design, and optimization strategies.

Laravel vs. Symfony: Which Is Right for Your Web App?Laravel vs. Symfony: Which Is Right for Your Web App?Mar 10, 2025 pm 01:34 PM

When it comes to choosing a PHP framework, Laravel and Symfony are among the most popular and widely used options. Each framework brings its own philosophy, features, and strengths to the table, making them suited for different projects and use cases. Understanding their differences and similarities is critical to selecting the right framework for your development needs.

How do I create and use custom Blade directives in Laravel?How do I create and use custom Blade directives in Laravel?Mar 17, 2025 pm 02:50 PM

The article discusses creating and using custom Blade directives in Laravel to enhance templating. It covers defining directives, using them in templates, and managing them in large projects, highlighting benefits like improved code reusability and r

How do I use Laravel's Artisan console to automate common tasks?How do I use Laravel's Artisan console to automate common tasks?Mar 17, 2025 pm 02:39 PM

Laravel's Artisan console automates tasks like generating code, running migrations, and scheduling. Key commands include make:controller, migrate, and db:seed. Custom commands can be created for specific needs, enhancing workflow efficiency.Character

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.