PHPackages                             seomanager/laravel-seo-manager - 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. seomanager/laravel-seo-manager

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

seomanager/laravel-seo-manager
==============================

SEO Manger for Laravel

v0.0.10(8y ago)42.3k1MITPHPPHP &gt;=7.0

Since Mar 4Pushed 8y ago1 watchersCompare

[ Source](https://github.com/VaheSaroyan/laravel-seo-manager)[ Packagist](https://packagist.org/packages/seomanager/laravel-seo-manager)[ RSS](/packages/seomanager-laravel-seo-manager/feed)WikiDiscussions master Synced yesterday

READMEChangelog (8)Dependencies (4)Versions (11)Used By (0)

Laravel Seo Manager
===================

[](#laravel-seo-manager)

---

> Current Build Status

[![Code Climate](https://camo.githubusercontent.com/7bf9610940444da677875a737b4fde40600472d84a28424ee044a3db471e76ee/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6172746573616f732f73656f746f6f6c732f6261646765732f6770612e737667)](https://codeclimate.com/github/VaheSaroyan/laravel-seo-manager)[![Codacy Badge](https://camo.githubusercontent.com/6884a1b208af10dbaf6d1c47a3d645b9b063365d64121c9024054a6c8dab8190/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f3434396631383632633031353434346362653262336461663631616237623130)](https://www.codacy.com/app/VaheSaroyan/Laravel-laravel-seo-tools?utm_source=github.com&utm_medium=referral&utm_content=VaheSaroyan/Laravel-laravel-seo-tools&utm_campaign=Badge_Grade)[![Build Status](https://camo.githubusercontent.com/23dc204132f256eb02a3a54acf5202a4208a80150c3096631d0e7900d5b3d7f0/68747470733a2f2f7472617669732d63692e6f72672f566168655361726f79616e2f6c61726176656c2d73656f2d6d616e616765722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/VaheSaroyan/laravel-seo-manager)

> Statistics [![Latest Stable Version](https://camo.githubusercontent.com/e9a33fa871dcb622041af23ab18a8ca20ebee896598f3e0fe53a76184c52ed86/68747470733a2f2f706f7365722e707567782e6f72672f73656f6d616e616765722f6c61726176656c2d73656f2d6d616e616765722f762f737461626c65)](https://packagist.org/packages/seomanager/laravel-seo-manager)[![Total Downloads](https://camo.githubusercontent.com/da91823d9d269b4eca5d94240a958f290fe9c0d44e68812aced6dd5a6eaced9e/68747470733a2f2f706f7365722e707567782e6f72672f73656f6d616e616765722f6c61726176656c2d73656f2d6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/seomanager/laravel-seo-manager)[![License](https://camo.githubusercontent.com/39c845da8dd9a21b27c2c061e6492a2c7b4de6ec1c8bd82c39e3f49e9f85c6d1/68747470733a2f2f706f7365722e707567782e6f72672f73656f6d616e616765722f6c61726176656c2d73656f2d6d616e616765722f6c6963656e7365)](https://packagist.org/packages/seomanager/laravel-seo-manager)[![Latest Unstable Version](https://camo.githubusercontent.com/03f40ae5917a8d0dba0cfb0c1a6c9cef25d82ee23e73583d4d5e42757c3d70ad/68747470733a2f2f706f7365722e707567782e6f72672f73656f6d616e616765722f6c61726176656c2d73656f2d6d616e616765722f762f756e737461626c65)](https://packagist.org/packages/seomanager/laravel-seo-manager)[![Monthly Downloads](https://camo.githubusercontent.com/d725ba3ee8150c6262a8ff54a02d82c217eebcd4735b48bea151f5e72efe4743/68747470733a2f2f706f7365722e707567782e6f72672f73656f6d616e616765722f6c61726176656c2d73656f2d6d616e616765722f642f6d6f6e74686c79)](https://packagist.org/packages/seomanager/laravel-seo-manager)[![Daily Downloads](https://camo.githubusercontent.com/fec64baca34efb4d9f548aca14dd86720144cf8970bbd502b5923113babc0638/68747470733a2f2f706f7365722e707567782e6f72672f73656f6d616e616765722f6c61726176656c2d73656f2d6d616e616765722f642f6461696c79)](https://packagist.org/packages/seomanager/laravel-seo-manager)

Installation
------------

[](#installation)

### 1 - Dependency

[](#1---dependency)

The first step is using composer to install the package and automatically update your `composer.json` file, you can do this by running:

```
composer require seomanager/laravel-seo-manager
```

> **Note**: If you are using Laravel 5.5, the steps 2 and 3, for providers and aliases, are unnecessaries. SeoManager supports Laravel new [Package Discovery](https://laravel.com/docs/5.5/packages#package-discovery).

### 2 - Provider

[](#2---provider)

You need to update your application configuration in order to register the package so it can be loaded by Laravel, just update your `config/app.php` file adding the following code at the end of your `'providers'` section:

> `config/app.php`

```
// file START ommited
    'providers' => [
        // other providers ommited
        Laravel\SeoManager\Providers\SeoManagerServiceProvider::class,
    ],
// file END ommited
```

### 3 - Facade

[](#3---facade)

> Facades are not supported in Lumen.

In order to use the `SEOMeta` facade, you need to register it on the `config/app.php` file, you can do that the following way:

```
// file START ommited
    'aliases' => [
        // other Facades ommited

             'LaravelSeo'=>Laravel\SeoManager\Facades\SeoManager::class,

                 ],
// file END ommited
```

### 4 Configuration

[](#4-configuration)

#### Publish config

[](#publish-config)

In your terminal type

```
php artisan vendor:publish
php artisam migrate
php artisan storage:link
```

In `LaravelSeoManager.php` configuration file you can determine the properties of the default values and some behaviors.

#### LaravelSeoManager.php

[](#laravelseomanagerphp)

- multi-languages default `false`
- multi-languages default `provider` *this data send type*and multi-languages default `controller`

### Meta tags Generator

[](#meta-tags-generator)

With **SEOMeta** you can create meta tags to the `head`

- 1 add `{!! SEO::generate(true) !!}` to site `head`
- 2 add `{!! SeoManager::generateManager() !!}` to site `body` *you can be shut seo manager in admin permission*

### EX

[](#ex)

```
@if(Auth::user->hasRole() == 'admin')
{!! SeoManager::generateManager() !!}
@endif
```

- 3 usage in controller

```
 public function index(Request $request)
    {
        SeoManager::seoGenarate($request);

        return view('home');
    }
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity54

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.

###  Release Activity

Cadence

Every ~6 days

Total

10

Last Release

2939d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c2dd1980d18645cbaecf54d7fda7b8784a793541cc6865fb1b90068ea4f98888?d=identicon)[VaheSaroyan](/maintainers/VaheSaroyan)

---

Top Contributors

[![VaheSaroyan](https://avatars.githubusercontent.com/u/33878690?v=4)](https://github.com/VaheSaroyan "VaheSaroyan (17 commits)")

---

Tags

facadelaravelmeta-tagsmulti-languages-defaultregistermanagerlaravel5seometatagsseomanageropengraphwebmaster

### Embed Badge

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

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

###  Alternatives

[artesaos/seotools

SEO Tools for Laravel and Lumen

3.3k5.1M60](/packages/artesaos-seotools)[butschster/meta-tags

The most powerful and extendable tools for managing SEO Meta Tags in your Laravel project

628730.7k2](/packages/butschster-meta-tags)[arcanedev/seo-helper

SEO Helper is a framework agnostic package that provides tools &amp; helpers for SEO (Laravel supported).

332467.0k4](/packages/arcanedev-seo-helper)[mad-web/laravel-seoable

Easy to map your eloquent fields to seo properties

407.6k](/packages/mad-web-laravel-seoable)[chriskonnertz/open-graph

Class that assists in building Open Graph meta tags

117428.6k3](/packages/chriskonnertz-open-graph)[honeystone/laravel-seo

SEO metadata and JSON-LD package for Laravel.

34744.1k](/packages/honeystone-laravel-seo)

PHPackages © 2026

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