Download the PHP package davzie/laravel-bootstrap without Composer
On this page you can find all versions of the php package davzie/laravel-bootstrap. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download davzie/laravel-bootstrap
More information about davzie/laravel-bootstrap
Files in davzie/laravel-bootstrap
Package laravel-bootstrap
Short Description A Laravel 4 Based CMS Built With Twitter Bootstrap 3
License
Informations about the package laravel-bootstrap
[DEPRECATED] A Laravel 4.1 Bootstrap CMS
Screencasts: Laravel Bootstrap YouTube Playlist
A Laravel 4.1 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.
Composer Require
Nice and simple
"davzie/laravel-bootstrap": "1.*"
Linking The Service Provider To Your Installation
Add this string to your array of providers in app/config/app.php
Davzie\LaravelBootstrap\LaravelBootstrapServiceProvider
Publishing The Configuration
Publish the configurations for this package in order to change them to your liking:
php artisan config:publish davzie/laravel-bootstrap
Publishing The Assets
You need assets bro!
php artisan asset:publish davzie/laravel-bootstrap
Migrating and Seeding The Database
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"