kaspar/seo

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

Maintainers

Package info

github.com/stevenkaspar/laravel-seo

pkg:composer/kaspar/seo

Statistics

Installs: 29

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.1 2017-03-23 20:33 UTC

This package is not auto-updated.

Last update: 2026-04-12 10:22:02 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')
      )
    ))
  ))
}}