PHPackages                             kluseg/laravel-bootstrap-select - 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. kluseg/laravel-bootstrap-select

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

kluseg/laravel-bootstrap-select
===============================

Set of selects utilizing bootstrap's 4 dropdowns paired with Laravel components

v1.0.0(7y ago)09MITJavaScript

Since Mar 15Pushed 7y agoCompare

[ Source](https://github.com/KluseG/laravel-bootstrap-select)[ Packagist](https://packagist.org/packages/kluseg/laravel-bootstrap-select)[ Docs](https://github.com/kluseg/bootstrapselect)[ RSS](/packages/kluseg-laravel-bootstrap-select/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (5)Versions (2)Used By (0)

BootstrapSelect
===============

[](#bootstrapselect)

[![Latest Version on Packagist](https://camo.githubusercontent.com/bcb3bdb44f298dd9445e63e673b8a25a16b51e1a021b5b6f6202dfbb85408b2e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b6c757365672f626f6f74737472617073656c6563742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kluseg/bootstrapselect)[![Total Downloads](https://camo.githubusercontent.com/693e6312f880cf4631c809c9fd93e8bcb0952761739d984422f57115334a3b9d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b6c757365672f626f6f74737472617073656c6563742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kluseg/bootstrapselect)[![Build Status](https://camo.githubusercontent.com/12bb90dd11ca60312add1026a1b77237204fd4a147f8dcc70675f5bf26ea62ab/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6b6c757365672f626f6f74737472617073656c6563742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/kluseg/bootstrapselect)[![StyleCI](https://camo.githubusercontent.com/cb13a877afd1dbe223c631789c3f922d3ace958fdb334a9cce9b26afefbc2ebd/68747470733a2f2f7374796c6563692e696f2f7265706f732f31323334353637382f736869656c64)](https://styleci.io/repos/12345678)

This is where your description should go. Take a look at [contributing.md](contributing.md) to see a to do list.

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

[](#installation)

Via Composer

```
$ composer require kluseg/laravel-bootstrap-select
```

Usage
-----

[](#usage)

```
$ php artisan vendor:publish --tag=laravel-bootstrap-select-assets
```

In webpack.mix.js

```
mix.js('resources/assets/vendor/kluseg/js/multiple-select.js', 'public/js')
   .sass('resources/assets/vendor/kluseg/sass/multiple-select.scss', 'public/css')
```

In your views

```

    I am multiple select!
    @component('bs::multiple-select-sync', [
        'sm' => true,
        'model' => null,
        'items' => [
            [
                'name' => 'input_name_1',
                'value' => 'input_value_1',
                'label' => 'Label 1'
            ],
            [
                'name' => 'input_name_2',
                'value' => 'input_value_2',
                'label' => 'Label 2'
            ]
        ]
    ])
        Please select one
    @endcomponent

    I am single select!
    @component('bs::multiple-select-sync', [
        'sm' => true,
        'model' => null,
        'items' => [
            [
                'group' => 'first_group',
                'label' => 'I am single select!',
                'unique' => true,
                'items' => [
                    [
                        'name' => 'input_name_1',
                        'value' => 'input_value_1',
                        'label' => 'Label 1'
                    ],
                    [
                        'name' => 'input_name_2',
                        'value' => 'input_value_2',
                        'label' => 'Label 2'
                    ]
                ]
            ],
        ]
    ])
        Please select one
    @endcomponent

    I am everything-in-one select!
    @component('bs::multiple-select-sync', [
        'items' => [
            [
                'group' => 'first_group',
                'label' => 'I am unique group!',
                'unique' => true,
                'items' => [
                    [
                        'name' => 'input_name_1',
                        'value' => 'input_value_1',
                        'label' => 'Label 1'
                    ],
                    [
                        'name' => 'input_name_2',
                        'value' => 'input_value_2',
                        'label' => 'Label 2'
                    ]
                ]
            ],
            [
                'group' => 'second_group',
                'label' => 'I am not an unique group!',
                'unique' => false,
                'items' => [
                    [
                        'name' => 'input_name_1',
                        'value' => 'input_value_1',
                        'label' => 'Label 1'
                    ],
                    [
                        'name' => 'input_name_2',
                        'value' => 'input_value_2',
                        'label' => 'Label 2'
                    ]
                ]
            ],
        ]
    ])
        Please select one
    @endcomponent

```

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits
-------

[](#credits)

- [author name](https://github.com/kluseg)
- [All Contributors](../../contributors)

License
-------

[](#license)

license. Please see the [license file](license.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

2615d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9f7bd905950eddb2340a8e9038e8c43511493728e136fda67873e4849f0d0c7d?d=identicon)[KluseG](/maintainers/KluseG)

---

Top Contributors

[![KluseG](https://avatars.githubusercontent.com/u/26159164?v=4)](https://github.com/KluseG "KluseG (1 commits)")

---

Tags

laravelBootstrapSelect

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kluseg-laravel-bootstrap-select/health.svg)

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

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[nedwors/navigator

A Laravel package to ease defining navigation menus

433.1k](/packages/nedwors-navigator)[xefi/faker-php-laravel

Faker php integration with laravel

1915.1k](/packages/xefi-faker-php-laravel)[dcblogdev/laravel-junie

Install pre-configured guides for Jetbrains Junie

392.5k](/packages/dcblogdev-laravel-junie)

PHPackages © 2026

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