Created
July 29, 2021 01:09
-
-
Save abishekrsrikaanth/28468fa78bae8b1150e035af2a0ec2d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use App\Models\StripePlan; | |
use Laravel\Nova\Observable; | |
use App\Observers\StripePlanObserver; | |
/** | |
* Bootstrap any application services. | |
* | |
* @return void | |
*/ | |
public function boot() | |
{ | |
parent::boot(); | |
Observable::make(StripePlan::class, StripePlanObserver::class); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment