Does anyone know of any Laravel packages/component libraries that focus on SEO?
Straightforward stuff like managing meta titles etc is handled well, but can't find anything that handles things like structured data for snippets?
Try this one, it handles structured data too github.com/ralphjsmit/laravel-seo
Thanks! Interesting that the options seems to handle everything on the backend. I guess the blade components bridge things to the front end though.
You can take a look at github.com/artesaos/seotools. It also handles OpenGraph, JSON+LD, etc.
Thanks, this looks solid. Interesting that all the solutions seem to handle this in the backend, when it feels like it should be managed on the front end.