Bitdeli Badge Project Status

Laravella

Laravel 4 Admin console, CMS and starter project. Hit the ground running with the most useful packages installed and integrated.

Github

Included

cborgia/radiate

HTML5 Boiler Plate, Twitter Bootstrap, Font Awesome, SASS, and a quick little login/register script to get you started.

laravella/crud

Database Create, Read, Update, Delete package. laravella/crud also makes provision for custom views and and AJAX friendly api so that you can basically achieve anything you want with it, above and beyond CRUD.

laravella/cms

A content management system and blog built on crud.

laravella/skins

An easy way to install new themes.

laravella/uploader

A sweet file uploader from blueimp packaged for laravel and integrated into Laravella/CMS.

laravella/cart

A demo shopping cart built on laravella/crud (just an example project).

laravella/package

A starter package for laravel. Includes a facade, artisan commands, IoC class, migrations and database seed examples.

Screenshots


File Uploads
Menu Permissions

Quick start guide

  1. Download the laravella project (Git clone or zip extract)
  2. Run : composer update (or : php composer.phar update)
  3. You should have a database server running and a target database created.
  4. Edit database details in /app/config/database.php.
  5. Add providers in /app/config/app.php : (only if you are not using the default laravella starter app)

    'providers' => array(...
    'Laravella\Laravella\LaravellaServiceProvider',
    'Laravella\Crud\CrudServiceProvider',
    'Laravella\CMS\CMSServiceProvider',
    'Laravella\Skins\SkinsServiceProvider',
    'Laravella\Uploader\UploaderServiceProvider')

  6. Install with : with php artisan laravella:install
  7. You can start a development server with : php artisan serve --port 80 from the command line
  8. Browse to :

    http://localhost for the frontend
    http://localhost/admin for admin console
    Default username is superadmin@yourwebsite.com and password is ravel

  9. Run php artisan crud:update again to regenerate meta data after you've added or altered tables.

API Docs

License

http://opensource.org/licenses/MIT

What's new

4.0.20131030
Skins package added

4.0.009
Ravel replaced with CMS

4.0.008
File uploader included

4.0.007
Options and option categories

4.0.006
dynamic menus


This project is maintained by laravella

Hosted on GitHub Pages