├── LICENSE.md ├── README.md ├── composer.json ├── config └── sitemap.php ├── resources └── views │ ├── image.blade.php │ ├── news.blade.php │ ├── sitemap.blade.php │ ├── sitemapIndex │ ├── index.blade.php │ └── sitemap.blade.php │ ├── url.blade.php │ └── video.blade.php └── src ├── Contracts └── Sitemapable.php ├── Crawler ├── Observer.php └── Profile.php ├── Sitemap.php ├── SitemapGenerator.php ├── SitemapIndex.php ├── SitemapServiceProvider.php └── Tags ├── Alternate.php ├── Image.php ├── News.php ├── Sitemap.php ├── Tag.php ├── Url.php └── Video.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/composer.json -------------------------------------------------------------------------------- /config/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/config/sitemap.php -------------------------------------------------------------------------------- /resources/views/image.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/image.blade.php -------------------------------------------------------------------------------- /resources/views/news.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/news.blade.php -------------------------------------------------------------------------------- /resources/views/sitemap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/sitemap.blade.php -------------------------------------------------------------------------------- /resources/views/sitemapIndex/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/sitemapIndex/index.blade.php -------------------------------------------------------------------------------- /resources/views/sitemapIndex/sitemap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/sitemapIndex/sitemap.blade.php -------------------------------------------------------------------------------- /resources/views/url.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/url.blade.php -------------------------------------------------------------------------------- /resources/views/video.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/resources/views/video.blade.php -------------------------------------------------------------------------------- /src/Contracts/Sitemapable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Contracts/Sitemapable.php -------------------------------------------------------------------------------- /src/Crawler/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Crawler/Observer.php -------------------------------------------------------------------------------- /src/Crawler/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Crawler/Profile.php -------------------------------------------------------------------------------- /src/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Sitemap.php -------------------------------------------------------------------------------- /src/SitemapGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/SitemapGenerator.php -------------------------------------------------------------------------------- /src/SitemapIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/SitemapIndex.php -------------------------------------------------------------------------------- /src/SitemapServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/SitemapServiceProvider.php -------------------------------------------------------------------------------- /src/Tags/Alternate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/Alternate.php -------------------------------------------------------------------------------- /src/Tags/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/Image.php -------------------------------------------------------------------------------- /src/Tags/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/News.php -------------------------------------------------------------------------------- /src/Tags/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/Sitemap.php -------------------------------------------------------------------------------- /src/Tags/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/Tag.php -------------------------------------------------------------------------------- /src/Tags/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/Url.php -------------------------------------------------------------------------------- /src/Tags/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-sitemap/HEAD/src/Tags/Video.php --------------------------------------------------------------------------------