PHPackages                             jeroen-g/laravel-pages - 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. jeroen-g/laravel-pages

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

jeroen-g/laravel-pages
======================

Simple pages package for Laravel 5

v3.0(8y ago)92545EUPL-1.1PHP

Since Feb 28Pushed 8y ago1 watchersCompare

[ Source](https://github.com/Jeroen-G/laravel-pages)[ Packagist](https://packagist.org/packages/jeroen-g/laravel-pages)[ Docs](https://github.com/Jeroen-G/laravel-pages)[ RSS](/packages/jeroen-g-laravel-pages/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (5)Dependencies (3)Versions (6)Used By (0)

Laravel Pages
=============

[](#laravel-pages)

Simple pages package for Laravel.

[![Scrutinizer Quality Score](https://camo.githubusercontent.com/396ff15882ef05b9a06b9c004b693a1d138e1d38f961a9db28280a97ed4bd825/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4a65726f656e2d472f6c61726176656c2d70616765732f6261646765732f7175616c6974792d73636f72652e706e673f733d61306538653263653365366630376262313137316535323537623332323461363034323762623363)](https://scrutinizer-ci.com/g/Jeroen-G/laravel-pages/)[![Latest Stable Version](https://camo.githubusercontent.com/8e88acaa79f54157d6a5416fb362eb5a077bb0c9a4016cb5982edce9f54d6f1f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6a65726f656e2d672f61637469766974792d6c6f676765722e7376673f7374796c653d666c6174)](https://github.com/jeroen-g/laravel-pages/releases)[![License](https://camo.githubusercontent.com/594e087899c94f50e8b66fe6082ae032bac5822a82eb5b5e6a8a538a8c801e26/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4555504c2d2d312e312d626c75652e7376673f7374796c653d666c6174)](license.md)

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

[](#installation)

Via Composer

```
$ composer require jeroen-g/laravel-pages
```

The following command installs the package without the testing requirements.

```
$ composer require jeroen-g/laravel-pages --update-no-dev
```

### For Laravel 5.4 or lower

[](#for-laravel-54-or-lower)

Add the service provider in `app/config/app.php`:

```
JeroenG\LaravelPages\LaravelPagesServiceProvider::class,

```

And in the same file, add the alias:

```
'LPages'   =>  JeroenG\LaravelPages\Facades\LaravelPages::class,

```

Configuration
-------------

[](#configuration)

To publish the package's migration files.

```
$ artisan vendor:publish

```

The last thing to do is to migrate:

```
$ artisan migrate

```

Usage
-----

[](#usage)

This package does not provide controllers and routes. To show pages you could use the route below. You'll need a page view to show the data from the database.

```
Route::get('{uri?}', function($uri)
{
	if(LPages::pageExists($uri))
	{
		$pageData = LPages::getPage($uri);
		return View::make('page', $pageData);
	}
	else
	{
		App::abort(404, 'Page Not Found');
	}
});
```

Have a look at `src\JeroenG\LaravelPages\LaravelPages.php` to see what this package can do and what each function needs. Everything is documented.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 98% 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 ~324 days

Total

5

Last Release

3164d ago

Major Versions

v1.0.2 → v2.02015-06-11

v2.0 → v3.02017-09-16

### Community

Maintainers

![](https://www.gravatar.com/avatar/0d8700d69abe733de151f8cf49084e99ded7b9d34d7b0d1cd8f3825f5d925ff3?d=identicon)[JeroenG](/maintainers/JeroenG)

---

Top Contributors

[![Jeroen-G](https://avatars.githubusercontent.com/u/1116853?v=4)](https://github.com/Jeroen-G "Jeroen-G (48 commits)")[![mallardduck](https://avatars.githubusercontent.com/u/619938?v=4)](https://github.com/mallardduck "mallardduck (1 commits)")

---

Tags

laravelpages

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jeroen-g-laravel-pages/health.svg)

```
[![Health](https://phpackages.com/badges/jeroen-g-laravel-pages/health.svg)](https://phpackages.com/packages/jeroen-g-laravel-pages)
```

###  Alternatives

[barryvdh/laravel-ide-helper

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

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[nedwors/navigator

A Laravel package to ease defining navigation menus

433.1k](/packages/nedwors-navigator)[xefi/faker-php-laravel

Faker php integration with laravel

1915.1k](/packages/xefi-faker-php-laravel)[dcblogdev/laravel-junie

Install pre-configured guides for Jetbrains Junie

392.5k](/packages/dcblogdev-laravel-junie)

PHPackages © 2026

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