Files
mtdb_movie/app/Console/Commands/GenerateSitemap.php
T
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

19 lines
370 B
PHP
Executable File

<?php
namespace App\Console\Commands;
use App\Services\SitemapGenerator;
use Illuminate\Console\Command;
class GenerateSitemap extends Command
{
protected $signature = 'sitemap:generate';
protected $description = 'Generate sitemaps for all site resources.';
public function handle(): void
{
app(SitemapGenerator::class)->generate();
}
}