Skip to content

Instantly share code, notes, and snippets.

@aguimaraes
Created April 5, 2016 00:50
Show Gist options
  • Select an option

  • Save aguimaraes/8977d9159f8c12efff61fc2755dca951 to your computer and use it in GitHub Desktop.

Select an option

Save aguimaraes/8977d9159f8c12efff61fc2755dca951 to your computer and use it in GitHub Desktop.
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App\Models\Quotation;
use App\Observers\QuotationObserver;
class ObserverServiceProvider extends ServiceProvider
{
public function boot()
{
Quotation::observe( new QuotationObserver );
}
public function register()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment