Home > PHP Framework > Laravel > body text

How to implement association deletion in Laravel

PHPz
Release: 2023-04-14 16:54:45
Original
1187 people have browsed it

Laravel is a popular PHP development framework that provides many convenient operations and functions. Among them, association deletion is a very important concept in the ORM (Object Relational Mapping) of the Laravel framework.

Associative deletion is when using a one-to-many (One To Many) or many-to-many (Many To Many) relationship. When deleting the main table data, the subsidiary table data is also deleted. Below we will introduce in detail how to implement association deletion in Laravel.

One-to-many association deletion

In a one-to-many relationship, for example, a user (User) has multiple articles (Article). When we delete a user, we need to delete the user's All articles are deleted.

In Laravel, we can define an articles() method in the User model, which uses the hasMany attribute to specify a User model corresponding to multiple Article models. In this way, when deleting User, we can add a method to delete articles in the boot method of the User model:

class User extends Model
{
    // 定义articles()关联方法
    public function articles()
    {
        return $this->hasMany(Article::class);
    }
    
    // 在User模型的boot方法中添加删除articles的方法
    protected static function boot()
    {
        parent::boot();
        static::deleted(function ($user) {
            $user->articles()->delete();
        });
    }
}
Copy after login

In the above code, we use Laravel's deleted observer to monitor the deletion operation of the User model, and then Call the articles() method to delete all the user's articles. In this way, when we use User::find($id)->delete() to delete a user, all its corresponding articles will also be deleted.

Many-to-many association deletion

In a many-to-many relationship, for example, an article (Article) has multiple tags (Tag), and a tag (Tag) can also correspond to multiple articles ( Article). When we delete an article, we need to delete the relationship data between the article and all tags.

In Laravel, we can define a tags() method in the Article model, which uses the belongsToMany attribute to specify an Article model corresponding to multiple Tag models, and also defines the name of the pivot table (relationship table). In this way, when deleting an Article, we can add a method to delete the associated data in the pivot table in the boot method of the Article model:

class Article extends Model
{
    // 定义tags()关联方法
    public function tags()
    {
        return $this->belongsToMany(Tag::class)->withPivot(['id']);
    }
    
    // 在Article模型的boot方法中添加删除pivot表格中的关联数据的方法
    protected static function boot()
    {
        parent::boot();
        static::deleting(function ($article) {
            $article->tags()->sync([]);
        });
    }
}
Copy after login

In the above code, we use Laravel's deleting observer to listen to the Article model Delete operation, and then call the tags() method to delete all tag data of the article. At the same time, we can also use the sync([]) method to delete the data associated with the article and all tags in the pivot table.

Summary

In Laravel, association deletion is a very important operation. When using one-to-many or many-to-many relationships, it can simplify our data deletion operations. In the above example, we use Laravel's observer to listen to the delete operation of the model, and then call the associated method in the callback function to delete the subsidiary table data or the related table data. In this way, when we use the Laravel framework to develop projects, we can operate the database more conveniently and efficiently.

The above is the detailed content of How to implement association deletion in Laravel. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!