Skip to content

Commit

Permalink
Merge pull request #7 from yourjhay/develop
Browse files Browse the repository at this point in the history
Update for new features
  • Loading branch information
yourjhay committed Jun 25, 2023
2 parents c83d84e + a6078e1 commit 47f79d9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

namespace App\Providers;

class EventServiceProvider {

/**
* Register any events/observer for your application.
* Example:
* User::observe(UserObserver::class);
*
* To Create Observer
* php cli make:observer User
*/
public function boot()
{
// Put all your observers here.
// User::observe(UserObserver::class);
}
}

0 comments on commit 47f79d9

Please sign in to comment.