PHPackages                             firmino/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. firmino/bootstrap

ActivePackage

firmino/bootstrap
=================

1.0.0(8y ago)056[1 PRs](https://github.com/firmino2611/laravel-bootstrap/pulls)MITPHP

Since Oct 10Pushed 7y ago1 watchersCompare

[ Source](https://github.com/firmino2611/laravel-bootstrap)[ Packagist](https://packagist.org/packages/firmino/bootstrap)[ RSS](/packages/firmino-bootstrap/feed)WikiDiscussions v1.0.0 Synced 2mo ago

READMEChangelog (1)DependenciesVersions (4)Used By (0)

laravel-bootstrap
=================

[](#laravel-bootstrap)

Pacote para criação de interface usando PHP e bootstrap

![license](https://camo.githubusercontent.com/850eae1099d2b05f53383473d7cd51f9bc1ab09b7d0d9e5122f1dd930efdcc6d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6173686170652f6170697374617475732e737667)

Instalação
==========

[](#instalação)

Instalando via composer

```
composer require firmino/bootstrap
```

Registre o ServiceProvider em *config/app.php*

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

Registre também os Facades no mesmo arquivo

```
'aliases' => [
      'Formulario' => Firmino\Bootstrap\Facades\Formulario::class,
      'HTML' => Firmino\Bootstrap\Facades\Html::class,
]
```

Classe Formulario
=================

[](#classe-formulario)

### Exemplo de input tipo text

[](#exemplo-de-input-tipo-text)

```
Formulario::text(array(
        'label' => 'texto',
        'name' => 'texto',
        'value' => 'Valor do campo'  // opcional,
        'hidden' => true // opcional (true deixa o campo invisível)
));

```

### Exemplo de input tipo select

[](#exemplo-de-input-tipo-select)

```
Formulario::select(array(
        'label' => 'Selecion a operadora',
        'name' => 'operadora',
        'multiple' => true, // opicional. habilita o select multiple
        'options' => array(
            ['oi', 'OI'],
            ['vivo', 'Vivo', true], // o terceiro parametro marca o item como selecionado
            ['tim', 'Tim']
        )
))

```

### Exemplo de input tipo textarea

[](#exemplo-de-input-tipo-textarea)

```
Formulario::textarea(array(
        'label' => 'textarea',
        'name' => 'textarea',
        'rows' => 7,
        'value' => 'valor do campo' // opicional
))

```

### Exemplo de input tipo file

[](#exemplo-de-input-tipo-file)

```
Formulario::file(array(
        'name' => 'File'
))

```

### Exemplo de input tipo checkbox

[](#exemplo-de-input-tipo-checkbox)

```
Formulario::checkbox(array(
        'label' => 'Confirmar presencao',
        'name' => 'checkbox',
        'checked' => false
))

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity65

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

Every ~150 days

Total

3

Last Release

2838d ago

Major Versions

1.0.0 → v2.0.0.x-dev2017-11-08

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/18086331?v=4)[Lucas Firmino](/maintainers/firmino2611)[@firmino2611](https://github.com/firmino2611)

---

Top Contributors

[![firmino2611](https://avatars.githubusercontent.com/u/18086331?v=4)](https://github.com/firmino2611 "firmino2611 (21 commits)")

### Embed Badge

![Health badge](/badges/firmino-bootstrap/health.svg)

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

PHPackages © 2026

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