laravel-sitemap-generator maintained by ezitisitis
Author
Last update
2024/10/07 15:36
(dev-master)
License
Downloads
2 399
Laravel Sitemap Generator
In most cases sitemap generation command is copy-pasted between projects, so here it is just packed.
Installation
composer require ezitisitis/laravel-sitemap-generator
Usage
Use as Artisan command:
php artisan sitemap:generate
or set it in to App\Console\Kernel:
protected function schedule(Schedule $schedule): void
{
$schedule->command('sitemap:generate')->daily();
}