PHPackages                             helori/laravel-seo - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. helori/laravel-seo

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

helori/laravel-seo
==================

SEO tools to insert meta and structured-data in laravel projects

124.9k6[2 PRs](https://github.com/helori/laravel-seo/pulls)HTML

Since May 18Pushed 7y ago3 watchersCompare

[ Source](https://github.com/helori/laravel-seo)[ Packagist](https://packagist.org/packages/helori/laravel-seo)[ RSS](/packages/helori-laravel-seo/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

laravel-seo
===========

[](#laravel-seo)

SEO tools to insert meta and structured-data in laravel projects

Installation and setup
----------------------

[](#installation-and-setup)

```
composer require helori/laravel-seo:dev-master
```

Configure your application:

```
// config/app.php
'providers' => [
    ...
    Helori\LaravelSeo\SeoServiceProvider::class,
];
'aliases' => [
	...
	'Seo' => Helori\LaravelSeo\Facades\Seo::class,
];
```

Publish the views if you wish to overwite the defaults:

```
php artisan vendor:publish --provider="Helori\LaravelSeo\SeoServiceProvider" --tag="views"
```

How to use
----------

[](#how-to-use)

In your layout, include theses views as needed:

```

    @include('laravel-seo::meta-facebook')
    @include('laravel-seo::meta-twitter')

	@include('laravel-seo::sd-organization')
	@include('laravel-seo::sd-local-business')
	@include('laravel-seo::sd-website')
	@include('laravel-seo::sd-breadcrumblist')

```

You can also include SEO information directly without using built-in views :

```

```

Add SEO information from your controller using the SEO facade. For example :

```
// ---------------------------------------------------------------------
//	SEO data shared between views :
// ---------------------------------------------------------------------
public function __construct(){
	Seo::set('global-title', 'Website name');
    Seo::set('global-description', 'Website description');

    Seo::set('logo-url', 'logo url');
    Seo::set('search-url', 'search url for structured data');
    Seo::set('latitude', 48.8256);
    Seo::set('longitude', 2.3258);

    Seo::set('email', 'organization email');
    Seo::set('phone', 'organization phone');
    Seo::set('opening-hours', 'Mo,Tu,We,Th,Fr 09:00-20:00');
    Seo::set('street-address', '1, welcome street');
    Seo::set('address-locality', 'Paris');
    Seo::set('address-region', '');
    Seo::set('address-country', 'FR');
    Seo::set('postal-code', '75008');
    Seo::set('area-served', 'FR');

    Seo::setSimilarTo('https://www.facebook.com/my-facebook-page');
    Seo::setSimilarTo('https://twitter.com/my-twitter-page');

    Seo::setContactPoint([
        'type' => 'customer-service',
        'phone' => 'phone number',
        'area-served' => 'FR',
        'opening-hours' => 'Mo,Tu,We,Th,Fr 09:00-20:00',
        'available-languages' => ['French']
    ]);

    Seo::set('og-locale', 'fr_FR');
    Seo::set('og-image-url', 'facebook_image_url');
    Seo::set('og-image-type', 'image/jpeg');
    Seo::set('og-image-width', 1200);
    Seo::set('og-image-height', 630);

    Seo::set('fb-app-id', 'My facebook app ID');
    Seo::set('twitter-sign', '@My_Twitter_Account');
}

// ---------------------------------------------------------------------
//	Page specific SEO data :
// ---------------------------------------------------------------------
public function home(){
	Seo::set('title', 'My home page title');
	Seo::set('description', "My home page description");
	Seo::set('keywords', "my,home,page,keywords");
	Seo::set('breadcrumblist', [
	    ['title' => 'Page short title', 'url' => 'page_url'],
	    ['title' => 'Sub-Page short title', 'url' => 'sub_page_url'],
	]);
}
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/09da58137025e7ef77e2724777686cd48dac57ab736d387a472e182f2d278d13?d=identicon)[Helori](/maintainers/Helori)

---

Top Contributors

[![helori](https://avatars.githubusercontent.com/u/8065958?v=4)](https://github.com/helori "helori (29 commits)")

### Embed Badge

![Health badge](/badges/helori-laravel-seo/health.svg)

```
[![Health](https://phpackages.com/badges/helori-laravel-seo/health.svg)](https://phpackages.com/packages/helori-laravel-seo)
```

###  Alternatives

[tonysm/tailwindcss-laravel

This package wraps up the standalone executable version of the Tailwind CSS framework.

26513.8k1](/packages/tonysm-tailwindcss-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
