mikicaivosevic/laravel-sitemap

Create and generate sitemaps with ease

2.2.3 2017-08-01 09:01 UTC

This package is auto-updated.

Last update: 2024-03-27 03:04:44 UTC


README

Installation

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,
];

Manually creating a sitemap

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);

Credits

License

The MIT License (MIT). Please see License File for more information.