Package Data | |
---|---|
Maintainer Username: | gmlo_89 |
Maintainer Contact: | gmlo89@hotmail.com (Giovanni Lopez) |
Package Create Date: | 2015-07-03 |
Package Last Update: | 2016-02-05 |
Home Page: | |
Language: | JavaScript |
License: | MIT |
Last Refreshed: | 2025-01-15 03:00:14 |
Package Statistics | |
---|---|
Total Downloads: | 301 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 10 |
Total Watchers: | 2 |
Total Forks: | 8 |
Total Open Issues: | 0 |
Its a PHP CMS powered by Laravel 5.1, ideal for small websites that require a blog
##Modules included:
This package is still under construction... But you can download and collaborate
“require”: {
...
"gmlo/cms": "dev-master”
}
$ composer update
config/app.php
.'providers' => [
...
// own
Gmlo\CMS\Providers\CMSServiceProvider::class,
// Required
Collective\Html\HtmlServiceProvider::class,
],
....
'aliases' => [
...
// Custom
'CMS' => Gmlo\CMS\Facades\CMS::class,
'Field' => Gmlo\CMS\Facades\FieldBuilder::class,
'Alert' => Gmlo\CMS\Facades\Alert::class,
'MediaManager' => Gmlo\CMS\Facades\MediaManager::class,
// Required
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
],
$ 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' => \Gmlo\CMS\Modules\Users\User::class,
config/cms.php
.Go to the web browser and put your-domain/admin
.
This package uses a number of open source projects to work properly:
By @gmlo_89
Feel free to contrinue and post your feedback!