PHPackages                             joeloco/bootstrap - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. joeloco/bootstrap

ActiveLibrary

joeloco/bootstrap
=================

A bootstrap 3 helper for Laravel 5

513PHP

Since Oct 24Pushed 10y ago1 watchersCompare

[ Source](https://github.com/JoeLoco/bootstrap)[ Packagist](https://packagist.org/packages/joeloco/bootstrap)[ RSS](/packages/joeloco-bootstrap/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

A bootstrap 3 helper for Laravel 5
----------------------------------

[](#a-bootstrap-3-helper-for-laravel-5)

### Install

[](#install)

```
composer require "joeloco/bootstrap:dev-master"
```

### Config

[](#config)

1 - Register the service provider in /config/app

```
'providers' => [
        //.....
        Bootstrap\Providers\BootstrapServiceProvider::class
    ],
```

2 - Set a alias for facade in /config/app

```
'aliases' => [
        //....
        'BS' => Bootstrap\Facades\Bootstrap::class,
    ],
```

### Breadcrumb example

[](#breadcrumb-example)

```
