meta
meta copied to clipboard
A package that makes it easy to add meta tags to your views with easy Laravel integration.
Results
1
meta issues
Sort by
recently updated
recently updated
newest added
Meta.php: ``` private function metaTag($name, $content) { if(substr($name, 0, 3) == 'og:') return ""; else return ""; } ``` `$content` should be `htmlentities(...)`-escaped before output to fit inside an attribute....