📜  laravel 删除关系数据 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:13.495000             🧑  作者: Mango

代码示例1
class User extends Eloquent
{
    public function photos()
    {
        return $this->has_many('Photo');
    }

    // this is a recommended way to declare event handlers
    public static function boot() {
        parent::boot();

        static::deleting(function($user) { // before delete() method call this
             $user->photos()->delete();
             // do the rest of the cleanup...
        });
    }
}