Package Data | |
---|---|
Maintainer Username: | nhitrort90 |
Maintainer Contact: | hurive90@gmail.com (Hugo Rivera) |
Package Create Date: | 2016-05-12 |
Package Last Update: | 2016-10-19 |
Language: | JavaScript |
License: | MIT |
Last Refreshed: | 2024-11-22 15:03:01 |
Package Statistics | |
---|---|
Total Downloads: | 65 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This is a PHP CMS powered by Laravel 5.3, it's based on Reactor CMS by gmlo89 (link: https://github.com/gmlo89/reactor-cms)
Users (CRUD, Auth) Categories (CRUD) Articles (CRUD)
First, pull in the package through Composer.
“require”: {
...
"nhitrort90/cms": "dev-master”
}
And run composer:
$ composer update And then, include the service provider within config/app.php.
'providers' => [
...
// own
Nhitrort90\CMS\Providers\CMSServiceProvider::class,
// Required
Collective\Html\HtmlServiceProvider::class,
],
....
'aliases' => [
...
// Custom
'CMS' => Nhitrort90\CMS\Facades\CMS::class,
'Field' => Nhitrort90\CMS\Facades\FieldBuilder::class,
'Alert' => Nhitrort90\CMS\Facades\Alert::class,
'MediaManager' => Nhitrort90\CMS\Facades\MediaManager::class,
// Required
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
],
Configure your preference database.
###Configure the CMS
$ php artisan cms:start Run this command and type the required data.
Make sure update the auth.php config file with the User Model of the CMS.
'model' => \Nhitrort90\CMS\Modules\Users\User::class,
Also you can set more configurations on config/cms.php.
Enjoy it!
Go to the web browser and put your-domain/admin.
This package uses a number of open source projects to work properly: