Package Data | |
---|---|
Maintainer Username: | sdipchikov |
Package Create Date: | 2016-05-11 |
Package Last Update: | 2020-04-21 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:18:08 |
Package Statistics | |
---|---|
Total Downloads: | 2,471 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 21 |
Total Watchers: | 6 |
Total Forks: | 5 |
Total Open Issues: | 25 |
For laravel 5.4+ please use the new repo. Thanks!
igniCMS is an administrative interface builder for Laravel 5.3
For Laravel versions 5.2 use branch v2.0
composer update
:"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"despark/ignicms": "dev-master"
},
Or composer require despark/ignicms
Despark\Providers\AdminServiceProvider::class,
Despark\Cms\Providers\FieldServiceProvider::class,
before the application service providers to the config/app.php
Example
...
/*
* Despark CMS Service Provider
*/
Despark\Cms\Providers\AdminServiceProvider::class,
Despark\Cms\Providers\FieldServiceProvider::class,
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
...
php artisan igni:admin:install
php artisan db:seed --class=DesparkDatabaseSeeder
<your_site_url>/admin
and use default credentials admin@despark.com
/ Despark1234
Use the command php artisan igni:admin:resource
to create all necessary files for manipulating resources. You should specify the resource name (in title case).
Example
php artisan igni:admin:resource "Blog Post"
The command php artisan igni:admin:update
will update composer dependencies, it'll clear the autoload and it'll run any new migrations.
You can run php artisan igni:admin:prod
on your production server, after deploy. It will install all dependencies according to your composer.lock file, run new migrations and optimize the autoload.
You can rebuild image styles using php artisan igni:images:rebuild
. If you want you can specify which resources to rebuil with --resources=*
switch.
You can exclude some resources with --without=*
Despark CMS was written by Despark for the Laravel framework and is released under the MIT License. See the LICENSE file for details.