dev-master
9999999-devKomvac CMS with Laravel 5.1
MIT
The Requires
by Hugo Rivera
laravel php cms
Wallogit.com
2017 © Pedro PelĂĄez
Komvac CMS with Laravel 5.1
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), (*1)
Users (CRUD, Auth) Categories (CRUD) Articles (CRUD), (*2)
First, pull in the package through Composer., (*3)
ârequireâ: {
...
"nhitrort90/cms": "dev-masterâ
}
And run composer:, (*4)
$ composer update And then, include the service provider within config/app.php., (*5)
'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., (*6)
$ php artisan cms:start Run this command and type the required data., (*7)
Make sure update the auth.php config file with the User Model of the CMS., (*8)
'model' => \Nhitrort90\CMS\Modules\Users\User::class,
Also you can set more configurations on config/cms.php., (*9)
Enjoy it!, (*10)
Go to the web browser and put your-domain/admin., (*11)
This package uses a number of open source projects to work properly:, (*12)
Komvac CMS with Laravel 5.1
MIT
laravel php cms