A Package to Help set up SEO in Your Laravel Project

Easily set up SEO in your Laravel applications with the code4mk/lara-head package by Mostafa Kamal. Here’s an example of how you’d use this package to set Facebook Opengraph tags: Khead::setOg([ “app_id” => [ “property”=>”fb:app_id”, “content”=>”123456789” ], “url” => [ “property”=>”og:url”, “content”=>”https://example.com/page.html” ], “type” => [ “property”=>”og:type”, “content”=>”website” ], “title” => [ “property”=>”og:title”, “content”=>”Content Title” ], […]

A Package to Help set up SEO in Your Laravel Project Read More »