Laravel SEO
This is a simple and extensible package for improving SEO via meta tags, such as OpenGraph tags.
By default, it uses <title> and OpenGraph tags. It also ships with a Twitter extension. You're, of course, free to write your own extensions as needed.
Features:
- Setting SEO tags from PHP
- Setting SEO tags from Blade
- Integration with Flipp and Previewify, to automatically generate cover images
- Custom extension support
- Expressive & simple API
- Customizable views
Example usage:
seo()
->title($post->title)
->description($post->excerpt)
->twitter()
->flipp('blog')
// Adds OpenGraph tags
// Adds Twitter card tags
// Generates social image using Flipp and sets it as the cover photo
Installation