PHPackages                             rmitesh/builder-block - 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. rmitesh/builder-block

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

rmitesh/builder-block
=====================

This is builder-block component for Filament

v1.0(1y ago)271MITPHP

Since Jul 28Pushed 1y ago3 watchersCompare

[ Source](https://github.com/rmitesh/builder-block)[ Packagist](https://packagist.org/packages/rmitesh/builder-block)[ RSS](/packages/rmitesh-builder-block/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Builder Block
=============

[](#builder-block)

[![Latest Stable Version](./assets/logo.png)](./assets/logo.png)

[![Latest Stable Version](https://camo.githubusercontent.com/e0b0ad14dee3b119e902ec36f61e9cea241597bb25272d43882000ca07ce6f03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726d69746573682f6275696c6465722d626c6f636b2e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/rmitesh/builder-block)[![Total Downloads](https://camo.githubusercontent.com/24daef030e2f2398da1ee01406fd3548e490eaff02f796b20472dc5456d6a5a8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726d69746573682f6275696c6465722d626c6f636b2e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/rmitesh/builder-block)[![Laravel v10.x](https://camo.githubusercontent.com/bfea501efe5759f52cfebee79ebb907199c9e88ae0bd65948d40ba67a1ad73fa/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d7631302e782d4646324432303f7374796c653d666f722d7468652d6261646765266c6f676f3d6c61726176656c)](https://laravel.com)[![PHP 8.1](https://camo.githubusercontent.com/f828b436a9f10bce9f30864883ab5b07c5f9bd5e21bf275312ad61f37dedce3b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e312d3737374242343f7374796c653d666f722d7468652d6261646765266c6f676f3d706870)](https://php.net)

Builder Block is collection of prebuilt Builder block of Filament for the CMS pages. Everything will store in JSON format, using this data you can display content dynamically.

If you are using [Filament fabricator](https://github.com/Z3d0X/filament-fabricator) then this is perfact package for your dynamic pages.

It comes with following blocks:

1. Hero section (Left and right side) [![builder-block](./assets/screenshots/hero-section.png)](./assets/screenshots/hero-section.png)
2. Cards [![builder-block](./assets/screenshots/cards.png)](./assets/screenshots/cards.png)
3. Mini states [![builder-block](./assets/screenshots/mini-states.png)](./assets/screenshots/mini-states.png)
4. Information boxes [![builder-block](./assets/screenshots/information-box.png)](./assets/screenshots/information-box.png)
5. FAQs [![builder-block](./assets/screenshots/faq.png)](./assets/screenshots/faq.png)

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

[](#installation)

You can install the package via composer:

```
composer require rmitesh/builder-block
```

How to use
----------

[](#how-to-use)

```
use Filament\Forms;
use Filament\Forms\Form;
use Rmitesh\BuilderBlock\Facades\BuilderBlock;

public static function form(Form $form): Form
{
    return $form
        ->schema([
            // your components ...

            Forms\Components\Builder::make('content')
                ->blocks(
                    BuilderBlock::make()
                        ->get(),
                ),

            // your components ...
        ]);
}
```

and if you want to add your custom blocks then you can add using `addBlock` function.

```
BuilderBlock::make()
    ->addBlock(
        Forms\Components\Builder\Block::make('my_custom_block')
            ->columns(4)
            ->icon('heroicon-m-information-circle')
            ->schema([
                // add your form components
            ]),
    )
    ->get()
```

Also, you can add multiple blocks using `addBlocks` function.

```
BuilderBlock::make()
    ->addBlocks([
        Forms\Components\Builder\Block::make('my_custom_block_1')
            ->columns(4)
            ->icon('heroicon-m-information-circle')
            ->schema([
                // add your form components
            ]),

        Forms\Components\Builder\Block::make('my_custom_block_2')
            ->columns(4)
            ->icon('heroicon-m-information-circle')
            ->schema([
                // add your form components
            ]),
    ])
    ->get()
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Mitesh Rathod](https://github.com/rmitesh)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity40

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

Unknown

Total

1

Last Release

704d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/48554454?v=4)[Mitesh Rathod](/maintainers/rmitesh)[@rmitesh](https://github.com/rmitesh)

---

Top Contributors

[![rmitesh](https://avatars.githubusercontent.com/u/48554454?v=4)](https://github.com/rmitesh "rmitesh (2 commits)")

---

Tags

laravelrmiteshbuilder-block

### Embed Badge

![Health badge](/badges/rmitesh-builder-block/health.svg)

```
[![Health](https://phpackages.com/badges/rmitesh-builder-block/health.svg)](https://phpackages.com/packages/rmitesh-builder-block)
```

###  Alternatives

[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

34226.4k13](/packages/schmeits-filament-character-counter)[biostate/filament-menu-builder

An Elegant Menu Builder for FilamentPHP

6528.1k2](/packages/biostate-filament-menu-builder)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

94135.4k5](/packages/marcelweidum-filament-expiration-notice)

PHPackages © 2026

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