| Package Data | |
|---|---|
| Maintainer Username: | mikicaivosevic | 
| Maintainer Contact: | freek@spatie.be (Freek Van der Herten) | 
| Package Create Date: | 2017-07-31 | 
| Package Last Update: | 2017-08-01 | 
| Home Page: | https://murze.be/2016/08/automatically-generate-a-sitemap-in-laravel/ | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-27 03:01:39 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 18 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 1 | 
| Total Forks: | 1 | 
| Total Open Issues: | 0 | 
First, install the package via composer:
composer require mikicaivosevic/laravel-sitemap
Next up: installing the service provider
// config/app.php
'providers' => [
    ...
    Mikica\Sitemap\SitemapServiceProvider::class,
];
You can also create a sitemap fully manual:
use Carbon\Carbon;
Sitemap::create()
   ->add('/page1')
   ->add('/page2')
   ->add(Url::create('/page3')->setLastModificationDate(Carbon::create('2016', '1', '1')))
   ->add(Url::create('/page4')->addXhtmlLink([
       'hreflang' => 'de',
       'rel'      => 'alternate'
       'href'     => 'http://www.example.com/deutsch/'
   ]))
   ->writeToFile($sitemapPath);
The MIT License (MIT). Please see License File for more information.