示例#1
0
文件: Ad.php 项目: elberd/maoh
 public static function boot()
 {
     parent::boot();
     Ad::deleting(function ($ad) {
         foreach ($ad->images as $image) {
             $image->delete();
         }
     });
 }