/**
  * Register any events for your application.
  *
  * @return void
  */
 public function boot()
 {
     parent::boot();
     //  loose wiring of a Laravel observer
     Post::saving(function ($post) {
         Event::fire(new \Christhompsontldr\Laraboard\Events\PostSaving($post));
     });
     //  loose wiring of a Laravel observer
     Post::created(function ($post) {
         Event::fire(new \Christhompsontldr\Laraboard\Events\PostCreated($post));
     });
 }