SEO tools to insert meta data in laravel projects
jwohlfert23/laravel-seo is a Laravel package for seo tools to insert meta data in laravel projects.
It currently has 3 GitHub stars and 6.064 downloads on Packagist (latest version 3.0).
Install it with composer require jwohlfert23/laravel-seo.
Discover more Laravel packages by jwohlfert23
or browse all Laravel packages to compare alternatives.
Last updated
Install package
composer require jwohlfert23/laravel-seo
You can publish the config to change default setting like the base of your title, twitter handle, etc.
php artisan vendor:publish --provider="Jwohlfert23\LaravelSeo\ServiceProvider"
Add Jwohlfert23\LaravelSeo\SeoTrait to your base controller. This will allow you to easily change the page title and other meta information directly from your controller like so...
public function index()
{
$this->seo()->setTitle('Home')->setDescription('This is out home page');
return view('home');
}
Insert app('seo')->render() into the head of your layout like so...
<head>
....
{!! app('seo')->render() !!}
...
</head>