This is a CMS backend for Laravel 4.x. Quickly integrate pages, blogs, FAQs, products, news, etc. in to your website and specify which areas you/client can manage.
Developers creating websites for themselves or for clients.
- Add the package to your
composer.json
file
composer require fourtwenty/cms:1.*
- Add the service provider to
app/config/app.php
:
'FourTwenty\Cms\CmsControllerServiceProvider',
- Run migration scripts to create related tables in the DB
php artisan migrate --package=fourtwenty/cms
- Publish asset files
php artisan asset:publish --package=fourtwenty/cms
- Run migrations
php artisan db:seed --class="Fourtwenty\Cms\CmsDatabaseSeeder"
php artisan db:seed --class="CmsDatabaseSeeder"
- Custom configurations
php artisan config:publish fourtwenty/cms