PHPackages                             wall-e/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. wall-e/laravel-seo

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

wall-e/laravel-seo
==================

A simple SEO meta manager for Laravel

1.0.0(8mo ago)10MITPHPPHP &gt;=8.0

Since Sep 2Pushed 8mo agoCompare

[ Source](https://github.com/Rahman-Shaikat/laravel-seo)[ Packagist](https://packagist.org/packages/wall-e/laravel-seo)[ RSS](/packages/wall-e-laravel-seo/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

Laravel SEO Package
===================

[](#laravel-seo-package)

A simple and flexible SEO meta manager for Laravel applications.
Easily manage meta tags, Open Graph, Twitter cards, canonical URLs, and more for any Laravel project.

---

📦 Installation
--------------

[](#-installation)

Require the package via Composer:

```
composer require wall-e/laravel-seo
```

⚙️ Configuration
----------------

[](#️-configuration)

Publish the configuration file to customize defaults:

```
php artisan vendor:publish --provider="WallE\LaravelSeo\SeoServiceProvider" --tag=config
```

This will create config/seo.php where you can set default meta values:

```
return [
    'title' => 'Default Site Title',
    'description' => 'Default description for your site.',
    'keywords' => 'laravel, seo, ecommerce',
    'author' => 'Your Name',
    'developer' => 'Your Company',
    'contact' => 'info@example.com',
    'og_image' => asset('assets/frontend/media/common/logo.png'),
    'twitter_site' => '@yourtwitterhandle',
    'robots' => 'index, follow',
];
```

🛠️ Usage
--------

[](#️-usage)

Set meta tags in a controller

You can set meta tags dynamically in your controllers:

```
use WallE\LaravelSeo\Facades\Seo;

Seo::set('title', $product->name)
   ->set('description', $product->short_description)
   ->set('keywords', 'shop, ecommerce, ' . $product->category->name)
   ->set('og_image', $product->image_url)
   ->set('twitter_site', '@yourtwitterhandle');
```

Include meta tags in Blade templates

Add this in the section of your layout:

```
@include('seo::meta')
```

This automatically renders all basic meta tags, Open Graph, Twitter cards, and canonical URLs.

🌐 Features
----------

[](#-features)

- Fully manage basic meta tags: title, description, keywords, author, developer, contact, copyright
- Open Graph support for Facebook, LinkedIn, etc.
- Twitter card support
- Canonical URL support
- Fully configurable defaults via config/seo.php
- Reusable in any Laravel project
- Optimized for SEO and social media sharing

🔧 Customizing Views
-------------------

[](#-customizing-views)

If you want to customize the Blade template for meta tags:

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

- The view will be copied to resources/views/vendor/seo/meta.blade.php.
- You can edit it to change the HTML structure of meta tags.

📝 Contributing
--------------

[](#-contributing)

Fork the repository and submit pull requests.

Bug reports, feature requests, and improvements are welcome.

Make sure to follow semantic versioning for updates.

📜 License
---------

[](#-license)

MIT License. See the [LICENSE](LICENSE) file for details.

🔗 Links
-------

[](#-links)

Packagist:

GitHub Repository:

---

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance64

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

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

Unknown

Total

1

Last Release

249d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4540d751221c1bc3ef9d030304551837741437b66e06f19b1f9d3ed54d4dde80?d=identicon)[rahman-shaikat](/maintainers/rahman-shaikat)

---

Top Contributors

[![Rahman-Shaikat](https://avatars.githubusercontent.com/u/64092487?v=4)](https://github.com/Rahman-Shaikat "Rahman-Shaikat (3 commits)")

### Embed Badge

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

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

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M683](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M157](/packages/orchestra-canvas)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M210](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M858](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)

PHPackages © 2026

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