Skip to content

Instantly share code, notes, and snippets.

@lucianobragaweb
Created November 15, 2023 13:12
Show Gist options
  • Save lucianobragaweb/1311d2a5143e87c210416fd8db1a9de4 to your computer and use it in GitHub Desktop.
Save lucianobragaweb/1311d2a5143e87c210416fd8db1a9de4 to your computer and use it in GitHub Desktop.
Laravel Observers
php artisan make:observer NomeDoObserver
class Post extends Model {
protected static function boot() {
parent::boot();
self::observe(NomeDoObserver::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment