Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 947 Bytes

File metadata and controls

37 lines (29 loc) · 947 Bytes

Content Management System for Laravel

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.

Inteded for

Developers creating websites for themselves or for clients.

Installation

  1. Add the package to your composer.json file
composer require fourtwenty/cms:1.*
  1. Add the service provider to app/config/app.php:
'FourTwenty\Cms\CmsControllerServiceProvider',
  1. Run migration scripts to create related tables in the DB
php artisan migrate --package=fourtwenty/cms
  1. Publish asset files
php artisan asset:publish --package=fourtwenty/cms
  1. Run migrations
php artisan db:seed --class="Fourtwenty\Cms\CmsDatabaseSeeder"
php artisan db:seed --class="CmsDatabaseSeeder"
  1. Custom configurations
 php artisan config:publish fourtwenty/cms