Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created July 13, 2021 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/4a361f9ef0075c1cefd38e664ea530be to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/4a361f9ef0075c1cefd38e664ea530be to your computer and use it in GitHub Desktop.
<?php
use App\Models\User;
use App\Observers\UserObserver;
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
User::observe(UserObserver::class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment