PHPackages                             raftalks/ravel - 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. raftalks/ravel

ActiveLibrary[Framework](/categories/framework)

raftalks/ravel
==============

CMS Package for Laravel 4 powered with Angularjs

21474637[4 issues](https://github.com/raftalks/ravel/issues)[1 PRs](https://github.com/raftalks/ravel/pulls)JavaScript

Since Jul 2Pushed 13y ago40 watchersCompare

[ Source](https://github.com/raftalks/ravel)[ Packagist](https://packagist.org/packages/raftalks/ravel)[ RSS](/packages/raftalks-ravel/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Ravel
=====

[](#ravel)

#### STATUS: UNDER DEVELOPMENT

[](#status-under-development)

### RavelCMS Ver 1 is getting ready to be released.

[](#ravelcms-ver-1-is-getting-ready-to-be-released)

- I am planning to change the whole design of the admin panel soon.
- Here is a preview of the new design. [![Screenshot](https://camo.githubusercontent.com/b216270215a153c494ff07c2e0726cb7dd8750aed67f7314114ecc1da6f460a9/687474703a2f2f73637265656e636c6f75642e6e65742f696d672f73637265656e73686f74732f34613031633534396162336433383534653236656261303838386663326532642e706e67)](https://camo.githubusercontent.com/b216270215a153c494ff07c2e0726cb7dd8750aed67f7314114ecc1da6f460a9/687474703a2f2f73637265656e636c6f75642e6e65742f696d672f73637265656e73686f74732f34613031633534396162336433383534653236656261303838386663326532642e706e67)

CMS Package for Laravel 4
-------------------------

[](#cms-package-for-laravel-4)

[![Screenshot](https://camo.githubusercontent.com/788ec7f91c63ea92c92a793fe8a6c2c2e7b6d3c4c1dead8d0e40175b280e942c/687474703a2f2f73637265656e636c6f75642e6e65742f696d672f73637265656e73686f74732f33303765373932333065656235303835363737643766633236306466633035662e706e67)](https://camo.githubusercontent.com/788ec7f91c63ea92c92a793fe8a6c2c2e7b6d3c4c1dead8d0e40175b280e942c/687474703a2f2f73637265656e636c6f75642e6e65742f696d672f73637265656e73686f74732f33303765373932333065656235303835363737643766633236306466633035662e706e67)

### How to Install

[](#how-to-install)

- Install L4 App from Github ( Watch this if you need to know how : )
- In your app composer.json file, add:

```
	"require": {
		"raftalks/ravel": "*"
	}
```

- Configure your database settings in the L4 app/config/database.php file
- Open your terminal in the L4 App root directory and run `php composer.phar update` command
- Add Ravel Service Provider to the app/config/app.php file under the array key "providers" as shown below

```
'providers' => array(

		'Raftalks\Ravel\RavelServiceProvider',

)
```

- And run the following command in the terminal to start installing the CMS package

```
 php artisan ravel:install

```

- The above command will publish all the assets and run the migration and seeds
- Before using Ravel CMS, you may want to do some configuration changes like setup a username and password, look inside vendor/raftalks/ravel/src/config/app.php file, by default the username is "admin" and password is "ravel".

### How to update the package

[](#how-to-update-the-package)

- Use the following composer update command to download the updates

```
php composer.phar update

```

- and after downloading the updates, run the following artisan command to make sure migrations and package assets gets updated

```
php artisan ravel:update

```

### Setting up custom fields to Post and Page

[](#setting-up-custom-fields-to-post-and-page)

- Check the config file under the package path app/config/packages/raftalks/ravel/content.php

```
'custom_fields' => array(

			//'example'
			//'post'		=> array(
							// 		"{metakey}" => array('label'=>'{name}','type'=>'{text}', 'attr'=>array(), 'options'=>array())
							// )

			'post'			=> array(
								'somefield' => array('label'=>'custom field','type'=>'input_checkbox'),
								'custom_field3' => array('label'=>'custom field','type'=>'ng_datepicker'),
								'custom_field2' => array('label'=>'custom field2','type'=>'select','options'=>array(1=>'test',2=>'two',3=>'three',4=>'four'))
								),

			'page'			=> array(),

			'attachement'	=> array(),

		),
```

### Admin Panel

[](#admin-panel)

- By default the CMS admin panel is available on  and you can change the base url to admin panel by changing the app config file of the package.

Documentation will be updated soon

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.8% 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/27342ec143f4eda111c49f7df5eef1cc9f86e9b0ed9c004ac7a51a2a5dc6c91a?d=identicon)[raftalks](/maintainers/raftalks)

---

Top Contributors

[![raftalks](https://avatars.githubusercontent.com/u/788192?v=4)](https://github.com/raftalks "raftalks (60 commits)")[![FR6](https://avatars.githubusercontent.com/u/286685?v=4)](https://github.com/FR6 "FR6 (2 commits)")

### Embed Badge

![Health badge](/badges/raftalks-ravel/health.svg)

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

###  Alternatives

[laravel/dusk

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

1.9k38.6M290](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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