davzie/laravel-bootstrap

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (1.0.4) of this package.

A Laravel 4 Based CMS Built With Twitter Bootstrap 3

Installs: 3 067

Dependents: 0

Suggesters: 0

Security: 0

Stars: 570

Watchers: 62

Forks: 179

Open Issues: 13

Language:JavaScript

1.0.4 2014-04-20 21:10 UTC

This package is not auto-updated.

Last update: 2021-03-05 21:24:32 UTC


README

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.

Laravel Bootstrap Screenshot

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"