PHPackages                             larawhale/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. larawhale/cms

ActiveLibrary[Framework](/categories/framework)

larawhale/cms
=============

A Laravel cms package

0.1.2(5y ago)78[9 issues](https://github.com/larawhale/cms/issues)[22 PRs](https://github.com/larawhale/cms/pulls)MITPHPPHP ^7.4

Since Mar 31Pushed 3y ago2 watchersCompare

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

READMEChangelog (1)Dependencies (11)Versions (33)Used By (0)

Larawhale CMS - A Laravel CMS package
=====================================

[](#larawhale-cms---a-laravel-cms-package)

A Laravel package that provides the features of a content management system to any new or existing Laravel application.

This package uses a simple concept of two entities, entries and fields. Entries can be seen as models, where fields are the properties of these models.

The goal of this package is to take the implementation of managing content out of the hands of the developer while maintaining as much customizability as possible. It is important to keep the development process the same as how developers are used to while using the Laravel framework.

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

[](#installation)

This package can be installed using composer:

```
composer require larawhale/cms

```

Read more about the installation of this package in the [documentation](https://github.com/larawhale/cms/wiki/Installation).

Example
-------

[](#example)

Here is a quick example how an entry can be configured. The entry will be made available in the user interface when it is saved in the default `resources/entries` folder.

```
// resources/entries/post.php
return [
    'type' => 'post',
    'name' => 'Post',
    'view' => 'entries.post',
    'fields' => [
        [
            'key' => 'route',
            'type' => 'route',
            'config' => [
                'rules' => 'required',
                'label' => 'Url',
            ],
        ],
        [
            'key' => 'title',
            'type' => 'text',
            'config' => [
                'rules' => 'required|string|max:191',
                'label' => 'Title',
            ],
        ],
        [
            'key' => 'body',
            'type' => 'textarea',
            'config' => [
                'rules' => 'required|string|max:1000',
                'label' => 'Body',
            ],
        ],
    ],
];
```

More information can be found at the [entries configuration](https://github.com/larawhale/cms/wiki/Entry-configuration) and [fields configutation](https://github.com/larawhale/cms/wiki/Field-configuration) documentation.

This configuration will result in the following form to be rendered in the user interface.

[![Rendered post entry form](https://user-images.githubusercontent.com/8861831/83181950-e2411780-a125-11ea-8660-27a7b7fe8930.png)](https://user-images.githubusercontent.com/8861831/83181950-e2411780-a125-11ea-8660-27a7b7fe8930.png)

The configured fields of this entry have now been made available in the configured `resources/views/entries/post.blade.php` file.

```
// resources/views/entries/post.blade.php

    {{ $entry->title }}

{!! $entry->body !!}
```

Documentation
-------------

[](#documentation)

The documentation is available on the [repository wiki](https://github.com/larawhale/cms/wiki/Introduction).

License
-------

[](#license)

This package falls under the MIT License (MIT). See the [license file](https://github.com/larawhale/cms/blob/master/LICENSE) for more information.

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 98.3% 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 ~12 days

Total

8

Last Release

2089d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/62665835?v=4)[larawhale](/maintainers/larawhale)[@larawhale](https://github.com/larawhale)

---

Top Contributors

[![thomas-veen](https://avatars.githubusercontent.com/u/8861831?v=4)](https://github.com/thomas-veen "thomas-veen (410 commits)")[![thomasowow](https://avatars.githubusercontent.com/u/45201651?v=4)](https://github.com/thomasowow "thomasowow (4 commits)")[![larawhale](https://avatars.githubusercontent.com/u/62665835?v=4)](https://github.com/larawhale "larawhale (2 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

cmslaravelpackage

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[bagisto/bagisto

Bagisto Laravel E-Commerce

27.6k172.1k9](/packages/bagisto-bagisto)[krayin/laravel-crm

Krayin CRM

23.2k33.6k1](/packages/krayin-laravel-crm)[exceedone/exment

Management for Product, Client, Contracts, Subscription, ...

28038.8k](/packages/exceedone-exment)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21318.6k3](/packages/ecotone-laravel)

PHPackages © 2026

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