Skip to content

Instantly share code, notes, and snippets.

@abishekrsrikaanth
Created July 29, 2021 01:09
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 abishekrsrikaanth/28468fa78bae8b1150e035af2a0ec2d5 to your computer and use it in GitHub Desktop.
Save abishekrsrikaanth/28468fa78bae8b1150e035af2a0ec2d5 to your computer and use it in GitHub Desktop.
<?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