Skip to content

catchup-forks/startersite

 
 

Repository files navigation

WORK IN PROGRESS - Do not use

You have been warned

Laravel 5 Bootstrap Starter Site

Official Documentation

Database migrations

Suggestion use Innodb

In general, innodb is a better mysql engine. By default the migrations do not specify to use it. Here are the steps to make it the default. It's important to make these changes before you run the migrations.

For example, from the post migration:

Schema::create('posts', function(Blueprint $table)
{
    $table->increments('id')->unsigned();
    $table->string('title');
    [...]
});

Add the engine. See the first line within the brackets:

Schema::create('posts', function(Blueprint $table)
{
    $table->engine = 'InnoDB';
    $table->increments('id')->unsigned();
    $table->string('title');
    [...]
});

Contributing

Thank you for considering contributing to the Laravel 5 Bootstrap Starter Site! The contribution guide is the same as Laravel can be found in the Laravel documentation.

License

The Laravel 5 Starter Site is open-sourced software licensed under the MIT license

This starter site includes other licensed software. Those licenses can be found in the licenses directory with the specific license and general description of use.

Thanks

Many of the backend options and setup are influenced by or use pieces from Graham Campbell's various works. His CMS is worth a look as it's a more complete piece of software. Graham is an amazing resource for the Laravel Community; Many thanks go out to him.

The Bootstrap templates are pulled from Start Bootstrap

Frontend Admin

About

Laravel 5 Advanced Starter Site

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 51.0%
  • PHP 32.3%
  • JavaScript 16.6%
  • ApacheConf 0.1%