meta-tags
meta-tags copied to clipboard
mistake in example json-ld
You example:
$tags->jsonld([
'@context' => 'http://schema.org',
'@type': 'Person',
'name': 'Pedro Borges'
]);
must be:
$tags->jsonld([
'@context' => 'http://schema.org',
'@type' => 'Person',
'name' => 'Pedro Borges'
]);
thanks for you class