A Laravel 4 PHP 5.4 CMS using Bootstrap 3. Laravel Bootstrap does not handle the front-end of your site. It merely provides a CRUD framework with some predefined systems (image gallery, pages etc) for you to enter and edit your data with.
It uses Redactor JS for content editing and provides a really simple way to prototype new 'objects'. You can make objects 'taggable' and 'uploadable' which means you can have unlimited number of tags associated with an item and also unlimited number of image uploads too.
Nice and simple
"davzie/laravel-bootstrap": "dev-master"
Add this string to your array of providers in app/config/app.php
Davzie\LaravelBootstrap\LaravelBootstrapServiceProvider
Publish the configurations for this package in order to change them to your liking:
php artisan config:publish davzie/laravel-bootstrap
You need assets bro!
php artisan asset:publish davzie/laravel-bootstrap
Seed the database, this pretty much just seeds an example user and settings. Migration is pretty simple, ensure your database config is setup and run this:
php artisan migrate --package="davzie/laravel-bootstrap"
php artisan db:seed --class="Davzie\\LaravelBootstrap\\Seeds\\DatabaseSeeder"