Laravel 5: cascade soft delete

后端 未结 4 1595
醉话见心
醉话见心 2020-12-24 07:54

I am having offers and services table.

Service(s) is a child of an offer. So far I have established functionality for soft deletin

4条回答
  •  有刺的猬
    2020-12-24 08:50

    If you want to get cascading softDeletes in your Eloquent Models I highly recommend using this library iatstuti/laravel-cascade-soft-deletes

    Composer

    // get it with composer.
    $ composer require iatstuti/laravel-cascade-soft-deletes="1.0.*"
    

    Quick example

    The one provided in the getting started sample.

    hasMany(Comment::class);
        }
    }  
    

提交回复
热议问题