Generate Dynamic sitemap in Laravel using roumen/sitemap package

Generate Dynamic sitemap in Laravel using roumen/sitemap package

In this tutorial, i will tell about sitemap and what are the benefits of using sitemap in website and how can you create dynamic sitemap in Laravel using roumen/sitemap package.

There are so many benefits of using sitemap in your application, sitemap inform to search engine about any changes which is recently made in your website and using sitemap in website its become easier for search engine to rank your web pages.

Its good for your website to achieve better ranking on google.

Sitemap is just a simple file where all web pages of your website are listed to inform search engine about your site content.

roumen/sitemap Package Installation

Add following line of code in your composer to install packages in your application.


  1. "roumen/sitemap": "dev-master"

Now run composer update command from command line.

Now add roumen service provider in followin path config/app.php

'Roumen\Sitemap\SitemapServiceProvider',

Now add route for sitemap.

  1. Route::get('sitemap.xml', function () {
  2. $sitemap = app("sitemap");
  3. $articles = App\Article::all() ; //fetch all articles to make url
  4. $sitemap->setCache('laravel.sitemap',60);
  5. $date = date('c');
  6. $priority = 1.0;
  7. foreach($articles as $key=>$article){
  8. $url = route('detail',[$article->slug]) ;
  9. $sitemap->add($url,$article->updated_at,$priority) ;
  10. }
  11. return $sitemap->render('xml');
  12. });

Phone: (+91) 8800417876
Noida, 201301
Attention Required! | Cloudflare

Sorry, you have been blocked

You are unable to access ressim.net

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.