Skip to content

Instantly share code, notes, and snippets.

@juniorb2ss
Last active August 29, 2015 14:13
Show Gist options
  • Save juniorb2ss/d7ca021e738069901165 to your computer and use it in GitHub Desktop.
Save juniorb2ss/d7ca021e738069901165 to your computer and use it in GitHub Desktop.
protected static function boot() {
parent::boot();
static::deleting(function($produtos) {
if ($produtos->imagens()->count() > 0)
{
$produtos->imagens->delete();
# File::delete(public_path().'id.jpg');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment