예제 #1
0
파일: Ad.php 프로젝트: elberd/maoh
 public static function boot()
 {
     parent::boot();
     Ad::deleting(function ($ad) {
         foreach ($ad->images as $image) {
             $image->delete();
         }
     });
 }