This package is abandoned and no longer maintained. The author suggests using the https://github.com/spatie/laravel-sitemap package instead.

Laravel friendly Bard that writes sitemap poetry in xml.

2.2.1 2018-09-17 08:09 UTC

This package is auto-updated.

Last update: 2022-02-01 12:45:56 UTC


README

Bard is the simplest PHP Sitemap package, just add some URLs and you are ready to go.

Become a Patron

Abandoned! I suggest using spatie/larevel-sitemap instead. It is a much better package with automatic sitemap generation.

Syntax

use Laravelista\Bard\UrlSet;
use Sabre\Xml\Writer;
use Carbon\Carbon;

$sitemap = new UrlSet(new Writer);

$sitemap->addUrl('http://domain.com/contact')
    ->setPriority(0.8)
    ->setChangeFrequency('hourly')
    ->setLastModification(Carbon::now())
    ->addTranslation('hr', 'http://domain.com/hr/contact');

$sitemap->render()->send();

Start learning

Installation

Run this from your project root in command line:

composer require laravelista/bard

Documentation

Tutorials

Bard