kaspar/seo

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

1.1 2017-03-23 20:33 UTC

This package is not auto-updated.

Last update: 2025-06-22 06:10: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')
      )
    ))
  ))
}}