meta-tags icon indicating copy to clipboard operation
meta-tags copied to clipboard

mistake in example json-ld

Open boban-dj opened this issue 6 years ago • 0 comments

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

boban-dj avatar Aug 03 '18 09:08 boban-dj