PHPackages                             kacospro/bootscake - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. kacospro/bootscake

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

kacospro/bootscake
==================

Bootstrap 4 helpers for CakePHP 3.4

v0.0.7(6y ago)53.8k3[1 issues](https://github.com/KacosPro/bootscake/issues)MITPHPPHP &gt;=5.5.9

Since Apr 16Pushed 6y ago5 watchersCompare

[ Source](https://github.com/KacosPro/bootscake)[ Packagist](https://packagist.org/packages/kacospro/bootscake)[ RSS](/packages/kacospro-bootscake/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (3)Dependencies (2)Versions (13)Used By (0)

BootsCake
=========

[](#bootscake)

[![Build Status](https://camo.githubusercontent.com/81343d0fc20adffd72890608f88feb6143867121bf3715bb92de8007064ab6be/68747470733a2f2f7472617669732d63692e6f72672f4b61636f7350726f2f626f6f747363616b652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/KacosPro/bootscake)[![License: MIT](https://camo.githubusercontent.com/fdf2982b9f5d7489dcf44570e714e3a15fce6253e0cc6b5aa61a075aac2ff71b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d79656c6c6f772e737667)](https://opensource.org/licenses/MIT)

[Bootstrap 4](https://getbootstrap.com/) plugin for [CakePHP ^3.4](https://cakephp.org).

Requirements
------------

[](#requirements)

- CakePHP ^3.4.0
- Bootstrap ^4.0.0
- jQuery 1.9.1 - 3,
- Popper.js ^1.14.0

Description
-----------

[](#description)

Adapter of current CakePHP's helpers. While I feel it is getting pretty close to a stable version 😄 it is possible that breaking changes ocurre

Includes
--------

[](#includes)

- FormHelper
- PaginatorHelper
- ModalHelper
- FlashHelper

Installing Using [Composer](http://getcomposer.org)
---------------------------------------------------

[](#installing-using-composer)

```
composer require kacospro/bootscake

```

Load the plugin by adding the following to your app's `config/boostrap.php`:

```
Plugin::load('BootsCake');
```

or using CakePHP's console:

```
bin/cake plugin load BootsCake

```

Setup
-----

[](#setup)

First of all you should load Bootstrap by your favorite method.

Then in your `src/View/AppView.php` load the helpers you need:

```
public function initialize()
{
    $this->loadHelper('BootsCake.BootsCakeFlash');
    $this->loadHelper('BootsCake.BootsCakeForm');
    $this->loadHelper('BootsCake.BootsCakeModal');
    $this->loadHelper('BootsCake.BootsCakePaginator');
}
```

Helper Usage
------------

[](#helper-usage)

Form Helper. You only need to call BootsCakeForm on the View

```
