PHPackages                             glebstar/laravel5-simple-cms - 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. [Admin Panels](/categories/admin)
4. /
5. glebstar/laravel5-simple-cms

ActiveLibrary[Admin Panels](/categories/admin)

glebstar/laravel5-simple-cms
============================

Simple CMS for Laravel 5

1.0.2(8y ago)057[2 issues](https://github.com/glebstar/laravel5-simple-cms/issues)MITHTMLPHP &gt;=5.6.0

Since Aug 24Pushed 8y ago1 watchersCompare

[ Source](https://github.com/glebstar/laravel5-simple-cms)[ Packagist](https://packagist.org/packages/glebstar/laravel5-simple-cms)[ Docs](https://github.com/glebstar/laravel5-simple-cms)[ RSS](/packages/glebstar-laravel5-simple-cms/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (2)Dependencies (1)Versions (4)Used By (0)

Simple CMS for Laravel 5.\*
===========================

[](#simple-cms-for-laravel-5)

This is a Laravel 5 package -

[![GitHub Author](https://camo.githubusercontent.com/8fe6b89265e2c872a8a79e18ae110794a6527642d67fdcf1aba3c77d5056ca88/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f617574686f722d40676c6562737461722d6c69676874677265792e7376673f7374796c653d666c61742d737175617265)](https://github.com/glebstar)

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

[](#installation)

```
{
    "require": {
        "glebstar/laravel5-simple-cms": "dev-master"
    }
}
```

or run `composer require glebstar/laravel5-simple-cms`

Then run composer update in your terminal to pull it in.

Once this has finished, you will need to add the service provider to the providers array in your app.php config as follows:

```
GlebStarSimpleCms\ServiceProvider::class,
```

To publish a the package configuration file, run:

```
php artisan vendor:publish --provider="GlebStarSimpleCms\ServiceProvider"
```

Added routes for cms pages with your autorization middleware:

```
Route::group(['prefix' => 'cms', 'middleware' => 'cms'], function(){
    Route::get('/', ['as' => 'cms', 'uses' =>'\GlebStarSimpleCms\Controllers\AdminController@index']);
    Route::match(['get', 'post'], '/add', '\GlebStarSimpleCms\Controllers\AdminController@add');
    Route::match(['get', 'post'], '/edit/{id}', '\GlebStarSimpleCms\Controllers\AdminController@edit');
    Route::delete('/delete/{id}', '\GlebStarSimpleCms\Controllers\AdminController@delete');
});

// this route should be the last.
Route::get('{path}', '\GlebStarSimpleCms\Controllers\CmsController@index')->where('path', '([A-z\d-\/_.]+)?');
```

Apply migration

```
php artisan migrate
```

### Configuration

[](#configuration)

Edit the file config/simplecms.php

Create a layout for cms pages, for example

```
@extends('layouts.main')

@section('add_title'){{$page->title}}@endsection
@section('description'){{$page->description}}@endsection
@section('keywords'){{$page->keywords}}@endsection

@section('content')

        @can('editor')

            Edit

        @endcan
        @yield('cmspagebody')

@endsection
```

Your layout should have @yield('cmspagebody')

If you need, to edit package layouts in resources/views/vendor/simplecms

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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 ~204 days

Total

3

Last Release

3185d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/12194105?v=4)[Gleb Starkov](/maintainers/glebstar)[@glebstar](https://github.com/glebstar)

---

Top Contributors

[![glebstar](https://avatars.githubusercontent.com/u/12194105?v=4)](https://github.com/glebstar "glebstar (6 commits)")

---

Tags

cms laravel5

### Embed Badge

![Health badge](/badges/glebstar-laravel5-simple-cms/health.svg)

```
[![Health](https://phpackages.com/badges/glebstar-laravel5-simple-cms/health.svg)](https://phpackages.com/packages/glebstar-laravel5-simple-cms)
```

###  Alternatives

[sebastienheyd/boilerplate

Laravel Boilerplate based on AdminLTE 3 with blade components, user management, roles, permissions, logs viewer, ...

29419.5k3](/packages/sebastienheyd-boilerplate)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61314.7k26](/packages/slowlyo-owl-admin)[a2insights/filament-saas

Filament Saas for A2Insights

171.5k](/packages/a2insights-filament-saas)

PHPackages © 2026

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