dev-master
9999999-dev https://github.com/apalette/laravel-bootstrapTo create a base Blade template with Bootstrap for Laravel 5.2
MIT
The Requires
- php >=5.4.0
- illuminate/support ~5.2
To create a base Blade template with Bootstrap for Laravel 5.2
This package will create a basic Blade template with Bootstrap for Laravel 5.2, (*1)
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
The next required step is to publish views and assets in your application with :, (*5)
php artisan vendor:publish
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)
To create a base Blade template with Bootstrap for Laravel 5.2
MIT