Example #1
0
 public function handle()
 {
     $this->info('Scheduling annotation for existing locations.');
     Location::all()->each(function (Location $l) {
         $this->line("{$l->human_name}");
         $this->dispatch(new AnnotateLocation($l));
     });
 }