2017 © Pedro PelĂĄez
 

library bootstrap

To create a base Blade template with Bootstrap for Laravel 5.2

image

codeuz/bootstrap

To create a base Blade template with Bootstrap for Laravel 5.2

  • Friday, August 5, 2016
  • by apalette
  • Repository
  • 1 Watchers
  • 1 Stars
  • 14 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Bootstrap Template

Description

This package will create a basic Blade template with Bootstrap for Laravel 5.2, (*1)

Installation

Add Bootstrap Package to your composer.json file to require Bootstrap :, (*2)

    require : {
        "laravel/framework": "5.2.*",
        "codeuz/bootstrap": "dev-master"
    }

Update Composer :, (*3)

    composer update

The next required step is to add the service provider to config/app.php :, (*4)

    Codeuz\Bootstrap\BootstrapServiceProvider::class

Publish

The next required step is to publish views and assets in your application with :, (*5)

    php artisan vendor:publish

Render

The last required step is to configure your app/Http/routes.php file to render the view :, (*6)

    Route::get('/', function () {
        return view('welcome-bootstrap');
    });

Congratulations, you have successfully installed Bootstrap Package !, (*7)

The Versions

05/08 2016

dev-master

9999999-dev https://github.com/apalette/laravel-bootstrap

To create a base Blade template with Bootstrap for Laravel 5.2

  Sources   Download

MIT

The Requires