Example #1
0
 /**
  * Execute the job.
  *
  * @return void
  */
 public function handle()
 {
     // Delete Artist from Database
     $this->artist->delete();
     // Fire the Event and the Listeners
     event(new DeletedArtist($this->artist));
 }