SEO package for Jasmine

2.2.1 2023-02-27 14:06 UTC

This package is auto-updated.

Last update: 2024-04-27 16:31:36 UTC


README

SEO package for Jasmine

Installation

composer require jasminecms/seo
then run
php artisan migrate

In your Page or breadable add the Seoable trait.

use Seoable;

In your fieldsManifest add

    public static function fieldsManifest(): FieldsManifest
    {
        return new FieldsManifest([
            'col-md-4'   => \JasmineSeo::fieldsBox() + [],
         ]);
    }

Before you return your view call JasmineSeo::build($seoableModel);

In your blade in the head section call {!! JasmineSeo::generate() !!}