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

ActiveLibrary[Framework](/categories/framework)

kezeneilhou/cms-laravel
=======================

Laravel Content Management System

v1.9(1y ago)010MITBlade

Since Oct 28Pushed 1y ago1 watchersCompare

[ Source](https://github.com/kezeneilhou/CmsLaravel)[ Packagist](https://packagist.org/packages/kezeneilhou/cms-laravel)[ RSS](/packages/kezeneilhou-cms-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)DependenciesVersions (11)Used By (0)

Laravel Content Management System
=================================

[](#laravel-content-management-system)

This package provides the essential framework for building a robust Content Management System (CMS) in Laravel.

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

[](#documentation)

- [Requirements](#requirements)
- [Installation](#installation)
- [Configuration](#configuration)
- [Post-Installation Steps](#post-installation-steps)
- [Usage](#usage)

Requirements
------------

[](#requirements)

Ensure you have the following installed:

- Laravel 8.x or higher
- PHP 7.4 or higher

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

[](#installation)

To install the package, run the following command:

```
composer require kezeneilhou/cms-laravel
```

Next, publish the vendor assets:

```
php artisan vendor:publish
```

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

[](#configuration)

### CDN Integration

[](#cdn-integration)

Import the Quill CDN in your layout view to enable rich text editing features:

```

```

### Routes Setup

[](#routes-setup)

Add the following routes to your `routes/web.php` file:

```
use App\Http\Controllers\PostController;
use App\Http\Controllers\QuillUploadController;

Route::resource('post', PostController::class);
Route::post('/upload-image', [QuillUploadController::class, 'uploadImage'])->name('quill.upload');
Route::post('/upload-file', [QuillUploadController::class, 'uploadFile'])->name('quill.upload.file');
```

Post-Installation Steps
-----------------------

[](#post-installation-steps)

After running the vendor publish command, ensure you update the namespaces for the published Models and Controllers. This is necessary to align with your application's structure:

1. Open the published Model and Controller files.
2. Update the namespaces from `Kezeneilhou\CmsLaravel\` to `App\` (or your desired namespace).

### Example of Namespace Update

[](#example-of-namespace-update)

For instance, if you have a model published at `app/Models/Post.php`, change the namespace as follows:

**Before:**

```
namespace Kezeneilhou\CmsLaravel\Models;
```

**After:**

```
namespace App\Models;
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

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

Total

10

Last Release

562d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fa036f861b16895f55e77848ec1332f8631ba35d0b6795826327c297da05f13a?d=identicon)[kezeneilhou](/maintainers/kezeneilhou)

### Embed Badge

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

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/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.7M259](/packages/laravel-dusk)[laravel/prompts

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

708181.8M596](/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)
