PHPackages                             chadanuk/mini-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. [Framework](/categories/framework)
4. /
5. chadanuk/mini-cms

ActiveLibrary[Framework](/categories/framework)

chadanuk/mini-cms
=================

Small, block based CMS

5741[1 PRs](https://github.com/chadanuk/mini-cms/pulls)PHPCI failing

Since Feb 21Pushed 4y ago2 watchersCompare

[ Source](https://github.com/chadanuk/mini-cms)[ Packagist](https://packagist.org/packages/chadanuk/mini-cms)[ RSS](/packages/chadanuk-mini-cms/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (3)Used By (0)

A micro CMS for laravel
=======================

[](#a-micro-cms-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/fc2f9043af04004c5cc3bc35e393fda3a139302ca627a3a79a931fd66b41e1af/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63686164616e756b2f6d696e692d636d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/chadanuk/mini-cms)[![Build Status](https://camo.githubusercontent.com/c63d25a7dc16932f4be5a7d52781241c45e4ed4f336610d655c4b8099c2e8955/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f63686164616e756b2f6d696e692d636d732f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/chadanuk/mini-cms)[![Quality Score](https://camo.githubusercontent.com/909ad21c7d69c983d18f2e90b2e5864341d281fc70e703466b45647840dc6bc8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f63686164616e756b2f6d696e692d636d732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/chadanuk/mini-cms)[![Total Downloads](https://camo.githubusercontent.com/367d165de368074f49a2c4f8cbed7e142923bce1b7b926e7c4f96e26f3d61884/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63686164616e756b2f6d696e692d636d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/chadanuk/mini-cms)

Templates based on page slug name, multiple Markdown and string blocks per page.

Define the content blocks in the template and Mini Cms will pick them up an present them as fields in the admin.

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

[](#installation)

You can install the package via composer:

```
composer require chadanuk/mini-cms
```

Add the following to your services providers in `config/app.php`

```
'providers' => [...
    Chadanuk\MiniCms\MiniCmsServiceProvider::class,
    Chadanuk\MiniCms\MiniCmsAdminRouteServiceProvider::class,
    ...
];
```

And at the bottom of all the providers add the catch all cms provider...

```
'providers' => [...
    Chadanuk\MiniCms\MiniCmsRouteServiceProvider::class,
];
```

Add the following to your aliases in `config/app.php`

```
'aliases' => [
    'MiniCms' => Chadanuk\MiniCms\MiniCmsFacade::class,
];
```

Usage
-----

[](#usage)

To use the blocks on a template (named after the page slug) in `resources/views/vendor/mini-cms/templates/{page-slug}.blde.php`

```
@minicms('string', 'Title')

@minicms('string', 'Subtitle')

@minicms('markdown', 'Content')
```

To embed the minicms admin pages in a custom view you will need to remove the admin route and use the following in your view...

```
\MiniCms::renderAdmin()
```

You will also need to add a route that catches the minicms paths, so something like...

```
Route::any('admin/mini-cms/{path?}', '\App\Http\Controllers\Admin\CMSController@show')->name('admin.cms')->where('path', '.*');
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Dan Chadwick](https://github.com/chadanuk)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/9db709b1ddc6fd21e9c4ab87189160ed506a03cb0fe7281d038e6ce1e58f5feb?d=identicon)[chadanuk](/maintainers/chadanuk)

---

Top Contributors

[![chadanuk](https://avatars.githubusercontent.com/u/234815?v=4)](https://github.com/chadanuk "chadanuk (7 commits)")

### Embed Badge

![Health badge](/badges/chadanuk-mini-cms/health.svg)

```
[![Health](https://phpackages.com/badges/chadanuk-mini-cms/health.svg)](https://phpackages.com/packages/chadanuk-mini-cms)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M190](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M256](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M591](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

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