kaspar/seo

There is no license information available for the latest version (1.1) of this package.

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/kaspar/seo

1.1 2017-03-23 20:33 UTC

This package is not auto-updated.

Last update: 2025-11-09 08:06:11 UTC


README

Example Usage

Include an Organization JSON-LD schema

layouts.partials.header

@include('layouts.partials.seo')

layouts.partials.seo

{{
  Seo::Organization(array(
    'url' => 'https://example.com',
    'contactPoint' => Seo::contactPointStuct(array(
      array(
        'email' =>       'support@example.com',
        'contactType' => 'Customer Service',
        'url' =>          action('WebsiteController@contact')
      )
    ))
  ))
}}