Exemplo n.º 1
0
Arquivo: Ad.php Projeto: elberd/maoh
 public static function boot()
 {
     parent::boot();
     Ad::deleting(function ($ad) {
         foreach ($ad->images as $image) {
             $image->delete();
         }
     });
 }