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

AbandonedArchivedLibrary

nfgarching/laravel-bootstrap-components
=======================================

Bootstrap 5.3 Components for Laravel

0.0.4(1y ago)03MITBladePHP ^8.2

Since Apr 14Pushed 8mo ago1 watchersCompare

[ Source](https://github.com/nfgarching/laravel-bootstrap-componets)[ Packagist](https://packagist.org/packages/nfgarching/laravel-bootstrap-components)[ Docs](https://github.com/nfgarching)[ RSS](/packages/nfgarching-laravel-bootstrap-components/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (3)Versions (5)Used By (0)

Laravel Bootstrap Componets
===========================

[](#laravel-bootstrap-componets)

This package contains a set of useful Bootstrap Laravel Blade components. It promotes DRY principles and allows you to keep your BLADE FILES nice and clean.

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

[](#requirements)

- [Laravel 12](https://laravel.com/)
- [Livewire 3](https://livewire.laravel.com/)
- [Column sorting with kyslik/column-sortable](https://github.com/Kyslik/column-sortable) (outdated)

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

[](#installation)

Install the package via composer:

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

The package will automatically register itself. You can publish the package with:

```
php artisan vendor:publish --provider="Nfgarching\Componets\LibraryServiceProvider"
```

### Installation from

[](#installation-from-httpsgithubcomnfgarchinglaravel-bootstrap-componets)

To test out the package installation, you’ll need a new Laravel project. Create a new project somewhere on your computer with the name e.g. example-app.

```
composer create-project laravel/laravel example-app
```

By default, Composer pulls in packages from Packagist so you’ll have to make a slight adjustment to your new project composer.json file. Open the file and update include the following array somewhere in the object:

```
"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/nfgarching/laravel-bootstrap-componets"
    }
]
```

Execute the following command to install the package:

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

The package will automatically register itself. You can publish the package with:

```
php artisan vendor:publish --provider="Nfgarching\Componets\LibraryServiceProvider"
```

### Installation with Git Clone for Development

[](#installation-with-git-clone-for-development)

To further develop the package, you’ll need a new Laravel project. Create a new project somewhere on your computer with the name e.g. example-app.

```
composer create-project laravel/laravel example-app
```

Clone the package as follow:

```
mkdir -p packages/nfgarching
cd packages/nfgarching
git clone git@github.com:nfgarching/laravel-bootstrap-componets.git
composer require livewire/livewire
```

Open composer.json an add in section

```
"autoload": {
    "psr-4": {
        ...,
        "Nfgarching\\Componets\\": "packages/nfgarching/laravel-bootstrap-componets/src/"
    }
},
```

Now, open the bootstrap/provider.php file and add to the providers array following:

```
return [
   App\Providers\AppServiceProvider::class,
   Nfgarching\Componets\LibraryServiceProvider::class,
];
```

```
composer dump-autoload
php artisan vendor:publish --provider="Nfgarching\Componets\LibraryServiceProvider"
```

This will register the PackageServiceProvider class as one of the service providers for this project. Start the application using php artisan serve and visit the /dashboard route to get dashboard.

Problem with Livewire 3 - How to Resolve the “419 Page Expired” Error
---------------------------------------------------------------------

[](#problem-with-livewire-3---how-to-resolve-the-419-page-expired-error)

Soution ist to disable CSRF token for Livewire [1](https://laravel.com/docs/12.x/csrf#csrf-excluding-uris)[2](https://medium.com/@harrisrafto/excluding-uris-from-csrf-protection-in-laravel-e697a2415b9f)[3](https://stackoverflow.com/questions/67782936/laravel-livewire-element-after-leave-a-text-field-gives-error-419)

Add in bootstrap\\app.php

```
->withMiddleware(function (Middleware $middleware) {
    $middleware->validateCsrfTokens(except: [
        'livewire/*'
    ]);
})
```

License
-------

[](#license)

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

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance55

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 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 ~0 days

Total

4

Last Release

393d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8aaed74451bdd4db2db803ceb1c60eb8795dce18df06ac5b71086afa4b869c09?d=identicon)[nfgarching](/maintainers/nfgarching)

---

Top Contributors

[![nfgarching](https://avatars.githubusercontent.com/u/10423182?v=4)](https://github.com/nfgarching "nfgarching (6 commits)")

---

Tags

laravelcomponentslayoutbootstrap

### Embed Badge

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

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

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[kompo/kompo

Laravel &amp; Vue.js FullStack Components for Rapid Application Development

11812.4k21](/packages/kompo-kompo)

PHPackages © 2026

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