calotype/seo is a Laravel package for a package containing seo helpers..
It currently has 73 GitHub stars and 2.642 downloads on Packagist (latest version v0.0.5).
Install it with composer require calotype/seo.
Discover more Laravel packages by calotype
or browse all Laravel packages to compare alternatives.
Last updated
Warning! This package is still in an alpha/beta state.
SEO is a package that provides helpers for some common SEO techniques.
Meta tags:
Sitemap.xml:
Robots.txt:
Require the package in your composer.json.
"calotype/seo": "dev-master"
Run composer install or update to download the package.
$ composer update
Just register the service provider and the facades in app/config/app.php and you are good to go.
// Service provider
'Calotype\SEO\Providers\SEOServiceProvider',
// Facades (can customize if preferred)
'SEO\Meta' => 'Calotype\SEO\Facades\Meta',
'SEO\Sitemap' => 'Calotype\SEO\Facades\Sitemap',
'SEO\Robots' => 'Calotype\SEO\Facades\Robots',