/**
  * Handle the event.
  *
  * @param  PodcastWasPurchased  $event
  * @return void
  */
 public function handle(Model $model)
 {
     if ($model instanceof CategoryableContract) {
         $model->categoriesSet()->create(['category_id' => Input::get('category_id')]);
     }
 }