Created
May 22, 2015 22:51
-
-
Save vinicius73/c552ea7073f69180593a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
SEOMeta::setTitle('Página Inicial'); | |
SEOMeta::setDescription('Esta é a descrição da minha página'); | |
OpenGraph::setDescription('Esta é a descrição da minha página'); | |
OpenGraph::setTitle('Página Inicial'); | |
OpenGraph::setUrl('http://exemplo.url.com'); | |
OpenGraph::addProperty('type', 'articles'); | |
Twitter::setTitle('Página Inicial'); | |
Twitter::setSite('@LuizVinicius73'); | |
$posts = Post::all(); | |
return view('myindex', compact('posts')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment