PHPackages                             okipa/laravel-bootstrap-components - 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. okipa/laravel-bootstrap-components

Abandoned → [https://github.com/Okipa/laravel-form-components](/?search=https%3A%2F%2Fgithub.com%2FOkipa%2Flaravel-form-components)ArchivedLibrary[Utility &amp; Helpers](/categories/utility)

okipa/laravel-bootstrap-components
==================================

Ready-to-use and customizable components.

5.1.2(4y ago)199.5k2MITPHPPHP ^7.4||^8.0

Since Jun 10Pushed 4y ago2 watchersCompare

[ Source](https://github.com/Okipa/laravel-bootstrap-components)[ Packagist](https://packagist.org/packages/okipa/laravel-bootstrap-components)[ Docs](https://github.com/Okipa/laravel-bootstrap-components)[ Fund](https://paypal.me/arthurlorent)[ Fund](https://ko-fi.com/arthurlorent)[ RSS](/packages/okipa-laravel-bootstrap-components/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (105)Used By (0)

[![Laravel Bootstrap Components](/docs/laravel-bootstrap-components.png)](/docs/laravel-bootstrap-components.png)

 [ ![Latest Stable Version](https://camo.githubusercontent.com/cf23cc7006d75ff369ada9d92d183868122b395b9afd0182368ebc5f359a3f4d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f4f6b6970612f6c61726176656c2d626f6f7473747261702d636f6d706f6e656e74732e7376673f7374796c653d666c61742d737175617265) ](https://github.com/Okipa/laravel-bootstrap-components/releases "Latest Stable Version") [ ![Total Downloads](https://camo.githubusercontent.com/64074c5f978db7b684ea23d35b070b8c319d64567616ebc034f444810ce100d8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f6b6970612f6c61726176656c2d626f6f7473747261702d636f6d706f6e656e74732e7376673f7374796c653d666c61742d737175617265) ](https://packagist.org/packages/Okipa/laravel-bootstrap-components "Total Downloads") [ ![Build Status](https://github.com/Okipa/laravel-bootstrap-components/workflows/CI/badge.svg) ](https://github.com/Okipa/laravel-bootstrap-components/actions "Build Status") [ ![Coverage Status](https://camo.githubusercontent.com/fc75ccd265a4ad99bb33d5604a5aa1e80879f36994ea85c2b5268e4bcee20a9e/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f4f6b6970612f6c61726176656c2d626f6f7473747261702d636f6d706f6e656e74732f62616467652e7376673f6272616e63683d6d6173746572) ](https://coveralls.io/github/Okipa/laravel-bootstrap-components?branch=master "Coverage Status") [ ![License: MIT](https://camo.githubusercontent.com/08cef40a9105b6526ca22088bc514fbfdbc9aac1ddbf8d4e6c750e3a88a44dca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d626c75652e737667) ](/LICENSE.md "License: MIT")

⚠️ **THIS PACKAGE HAS BEEN ABANDONED IN FAVOR OF .** ⚠️
=&gt; Only bug fixes will be merged. Please consider moving to the new package.

Save time and take advantage of a set of dynamical, ready-to-use and fully customizable bootstrap form components.

Found this package helpful? Please consider supporting my work!

[![Donate](https://camo.githubusercontent.com/6c3b5a78d466728cacf06baad81fbd1e05af9cdb0406db055d37df429291a74f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275795f6d655f612d4b6f2d2d66692d6666356635662e737667)](https://ko-fi.com/arthurlorent)[![Donate](https://camo.githubusercontent.com/3cd689d69c5219f5c2f2675b7ccccb50061b112100f2468c1cec746765762ebd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f6e6174655f6f6e2d50617950616c2d677265656e2e737667)](https://paypal.me/arthurlorent)

Compatibility
-------------

[](#compatibility)

LaravelPHPBootstrapPackage^7.0^7.4^4.0^5.0^7.0^7.4^4.0^4.0^7.0^7.4^4.0^3.0^5.8^7.2^4.0^2.0^5.5^7.1^4.0^1.0Upgrade guide
-------------

[](#upgrade-guide)

- [From V4 to V5](/docs/upgrade-guides/from-v4-to-v5.md)
- [From V3 to V4](/docs/upgrade-guides/from-v3-to-v4.md)
- [From V2 to V3](/docs/upgrade-guides/from-v2-to-v3.md)
- [From V1 to V2](/docs/upgrade-guides/from-v1-to-v2.md)

Usage
-----

[](#usage)

Just call the components you need in your views and let this package take care of the HTML generation annoying part.

### Standard use case

[](#standard-use-case)

Call this component in your view:

```
{{-- Helper style --}}
{{ inputText()->name('name') }}

{{-- Facade style --}}
{{ InputText::name('name') }}
```

And get this HTML generated for you:

```

        Name

```

### Multilingual use case

[](#multilingual-use-case)

Call this component in your view:

```
{{-- Helper style --}}
{{ inputText()->name('title')->localized(['fr', 'en']) }}

{{-- Facade style --}}
{{ InputText::name('title')->localized(['fr', 'en']) }}
```

And get this HTML generated for you:

```

        Title (FR)

        Title (EN)

```

Table of Contents
-----------------

[](#table-of-contents)

- [Installation](#installation)
- [Configuration](#configuration)
- [Translations](#translations)
- [Views](#views)
- [API documentation](#api-documentation)
- [Testing](#testing)
- [Changelog](#changelog)
- [Contributing](#contributing)
- [Credits](#credits)
- [Licence](#license)

Installation
------------

[](#installation)

- Install the package with composer:

```
composer require okipa/laravel-bootstrap-components
```

Configuration
-------------

[](#configuration)

Publish the package configuration file to customize it if necessary:

```
php artisan vendor:publish --tag=bootstrap-components:config
```

⚠️ You may have to run a `composer dump-autoload` after changing a path in your configuration file.

Translations
------------

[](#translations)

All displayed labels or sentences are translatable.

See how to translate them on the Laravel official documentation: .

Here is the list of the words and sentences available for translation:

- `Create`
- `Update`
- `Validate`
- `Back`
- `Cancel`
- `Remove`
- `No file selected.`
- `Awaited format: Day/Month/Year.`
- `Awaited format: Hour:Minutes.`
- `Awaited format: Day/Month/Year Hour:Minutes.`
- `Your browser does not support the :tag HTML5 tag.`

You will also have to define each attribute you define in the `->name()` method in the `validation` (`attributes` key) translation file.

Views
-----

[](#views)

Publish the package views to customize them if necessary:

```
php artisan vendor:publish --tag=bootstrap-components:views
```

API documentation
-----------------

[](#api-documentation)

- [Components list](/docs/api/components.md)
- [Component types](/docs/api/types.md)

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Arthur LORENT](https://github.com/okipa)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity84

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 97.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~12 days

Recently: every ~54 days

Total

101

Last Release

1714d ago

Major Versions

0.10.0 → 1.0.02019-09-04

1.0.10 → 2.0.02020-02-18

2.2.3 → 3.0.02020-08-20

3.0.3 → 4.0.02020-11-14

4.0.0 → 5.0.02020-12-07

PHP version history (5 changes)0.0.1PHP &gt;=7.1

0.8.0PHP ^7.2

1.0.7PHP ^7.1

3.0.0PHP ^7.4

4.0.0PHP ^7.4||^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/cc5b2b60afe2f6f28bd3ef5105fc1883386967efcc744b1b6829b8eb289f5a91?d=identicon)[Okipa](/maintainers/Okipa)

---

Top Contributors

[![Okipa](https://avatars.githubusercontent.com/u/5328934?v=4)](https://github.com/Okipa "Okipa (82 commits)")[![dan-lucas](https://avatars.githubusercontent.com/u/6905981?v=4)](https://github.com/dan-lucas "dan-lucas (2 commits)")

---

Tags

bootstrapcomponentsgenerategenerationgeneratorhtmllaravelphpphplaravelpackagecomponentsgeneratorhtmlbootstrapgenerationgenerateokipa

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/okipa-laravel-bootstrap-components/health.svg)

```
[![Health](https://phpackages.com/badges/okipa-laravel-bootstrap-components/health.svg)](https://phpackages.com/packages/okipa-laravel-bootstrap-components)
```

###  Alternatives

[okipa/laravel-table

Generate tables from Eloquent models.

56752.8k](/packages/okipa-laravel-table)[okipa/laravel-form-components

Ready-to-use and customizable form components.

198.0k1](/packages/okipa-laravel-form-components)[netojose/laravel-bootstrap-4-forms

Bootstrap 4 form builder for Laravel 5

182115.3k](/packages/netojose-laravel-bootstrap-4-forms)[tehwave/laravel-achievements

Simple, elegant Achievements the Laravel way

7012.8k](/packages/tehwave-laravel-achievements)[wujunze/money-wrapper

MoneyPHP Wrapper

113.8k](/packages/wujunze-money-wrapper)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
