Will include jquery, bootstrap and font-awsome.
Add BBITBootstrapBundle in your composer.json:
{
"require": {
"bbit/bootstrap-bundle": "dev-master",
}
}
Now tell composer to download the bundle by running the command:
$ php composer.phar update bbit/bootstrap-bundle
Composer will install the bundle to your project's vendor/BBIT directory.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new BBIT\BootstrapBundle\BBITBootstrapBundle(),
);
}
{{ insertBootstrap() }}
How can I help you explore Laravel packages today?