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(10mo ago)10MITPHPPHP &gt;=8.0

Since Sep 2Pushed 10mo 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 today

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

27

—

LowBetter than 47% of packages

Maintenance55

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

303d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/64092487?v=4)[Rahman-Shaikat](/maintainers/rahman-shaikat)[@Rahman-Shaikat](https://github.com/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

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[illuminate/pagination

The Illuminate Pagination package.

12234.1M1.0k](/packages/illuminate-pagination)[illuminate/pipeline

The Illuminate Pipeline package.

9349.2M281](/packages/illuminate-pipeline)[illuminate/redis

The Illuminate Redis package.

8314.6M375](/packages/illuminate-redis)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)

PHPackages © 2026

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