info('Adding '.$route['path'].' to sitemap.'); $sitemap->add(Url::create($route['path']) ->setPriority($route['priority'] ?? static::PRIORITY) ->setLastModificationDate($route['last_modified'] ?? now()) ->setChangeFrequency($route['frequency'] ?? static::CHANGE_FREQUENCY)); } } $sitemap->writeToFile(public_path('sitemap.xml')); $this->info('Sitemap has been successfully generated!'); } }