Lara head
Easily setup SEO in your laravel project with lara-head :heart: @code4mk
* [gist link](https://gist.github.com/lancejpollard/1978404) * [gethead](https://gethead.info/) The project is written primarily in PHP, first published in 2019. Key topics include: 0devco, code4mk, head, laravel, laravel-meta.
Latest release: v1.0.0— Laravel seo v1.0.0
January 9, 2020View Changelog →
<p align="center" ><img src="https://user-images.githubusercontent.com/17185462/56885908-85d97780-6a8f-11e9-81ef-e7e6ac49d1ed.PNG"></p>
installation
bashcomposer require code4mk/lara-head
usage meta
~ inside controller
phpuse Khead; class Test { public function home() { Khead::setMeta('viewport',[ "name" => "viewport", "content"=>"width=device-width, initial-scale=1" ]); } }
~ inside blade <access>
php{{ Khead::getMeta('viewport') }} // <meta name="bladeport" content="width=device-width, initial-scale=1">
link
phpKhead::setLink('author',[ "rel"=>"author", "href"=>"humans.txt" ]); // blade {{ Khead::getLink('author') }} // <link rel="author" href="humans.txt">
script
phpKhead::setScript('one',[ "src"=>"test.js", ]); // blade {{ Khead::getScript('one') }} // <script src="test.js"></script>
title
phpKhead::setTitle('this is a title'); // blade {{ Khead::getTitle() }}
facebook open graph
phpKhead::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" ], "image" => [ "property"=>"og:image", "content"=>"https://example.com/image.jpg" ], "description" => [ "property"=>"og:description", "content"=>"Description Here" ], "site_name" => [ "property"=>"og:site_name", "content"=>"Site Name" ], "locale" => [ "property"=>"og:locale", "content"=>"en_US" ], "author" => [ "property"=>"article:author", "content"=>"@code4mk" ] ]); // blade {{ Khead::getOg() }}
twitter cards
phpKhead::setTwitCards([ "card" => [ "name" => "twitter:card", "content"=>"summary" ], "site" => [ "name"=>"twitter:site", "content"=>"@code4mk" ], "creator" => [ "name"=>"twitter:creator", "content"=>"@code4mk" ], "url" => [ "name"=>"twitter:url", "content"=>"https://code4mk.org" ], "title" => [ "name"=>"twitter:title", "content"=>"Content Title" ], "description" => [ "name"=>"twitter:description", "content"=>"Content description less than 200 characters" ], "image" => [ "name"=>"twitter:image", "content"=>"https://code4mk.org/image.jpg" ], "dnt" => [ "name"=>"twitter:dnt", "content"=>"on" ] ]); // blade {{ Khead::getTwitCards() }}
Head tags
<a href="https://twitter.com/0devco" target="_blank" ><p align="center" ><img src="https://raw.githubusercontent.com/0devco/docs/master/.devco-images/logo-transparent.png"></p></a>
This article is auto-generated from code4mk/lara-head via the GitHub API.Last fetched: 6/20/2026
