Created
April 5, 2016 00:50
-
-
Save aguimaraes/8977d9159f8c12efff61fc2755dca951 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 | |
| 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