PHPackages                             softok2/filament-starter-kit - 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. softok2/filament-starter-kit

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

softok2/filament-starter-kit
============================

A set of basic packages to start with filament

1.0.0(6mo ago)010MITPHPPHP ^8.2CI passing

Since Oct 21Pushed 6mo agoCompare

[ Source](https://github.com/softok2/filament-starter-kit)[ Packagist](https://packagist.org/packages/softok2/filament-starter-kit)[ Docs](https://github.com/softok2/filament-starter-kit)[ GitHub Sponsors](https://github.com/softok2)[ RSS](/packages/softok2-filament-starter-kit/feed)WikiDiscussions main Synced 1mo ago

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

A set of basic packages to start with filament projects
=======================================================

[](#a-set-of-basic-packages-to-start-with-filament-projects)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6047cd9fda20653e97329dd9fab39ccc435ac71a273c5bbf289f887d03b847af/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736f66746f6b322f66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/softok2/filament-starter-kit)[![GitHub Tests Action Status](https://camo.githubusercontent.com/672ff3eb442dc5ca2b6cd2b9e3d1214bcb2a7af2578fd057ee442cf947137601/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736f66746f6b322f66696c616d656e742d737461727465722d6b69742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/softok2/filament-starter-kit/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/afae307c9702377904a0b067411f453178649d6c338985d9cb87b92c5026231d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736f66746f6b322f66696c616d656e742d737461727465722d6b69742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/softok2/filament-starter-kit/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/024d5da08d326aabfc37ffc33d60519ac0a7ddfad48693c6a12b2eb6b2c5aaee/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736f66746f6b322f66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/softok2/filament-starter-kit)

Wrap a set of basic packages to start with filament projects.

Support us
----------

[](#support-us)

[![](https://camo.githubusercontent.com/a9c0f663c0e85bc255d2d88fd936234784c79d784869fae1492af7de25f5093b/68747470733a2f2f6d69722d73332d63646e2d63662e626568616e63652e6e65742f70726f6a6563745f6d6f64756c65732f6d61785f3633325f776562702f61663135303731363834323130352e353632623231376631346435342e6a7067)](https://softok2.com/)

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

[](#installation)

You can install the package via composer:

```
composer require softok2/filament-starter-kit
```

Start by executing the instalation command:

```
php artisan filament-starter-kit:install
```

Configuration steps:

1. Add the theme’s CSS file to the Laravel plugin’s `input` array in `vite.config.js`:

```
input: [
    // ...
    'resources/css/filament/admin/theme.css',
]
```

2. Now, register the Vite-compiled theme CSS file in the panel’s provider:

```
use Filament\Panel;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->viteTheme('resources/css/filament/admin/theme.css')
        ->sidebarCollapsibleOnDesktop()
        ->topbar(false);
}
```

3. Add installed plugins to AdminPanelServiceProvider:

```
 ->plugins([
            FilamentApexChartsPlugin::make(),
             AuthUIEnhancerPlugin::make()
                    ->showEmptyPanelOnMobile(false)
                    ->formPanelPosition()
                    ->formPanelWidth('35%')
                    ->emptyPanelBackgroundImageOpacity('50%')
                    ->emptyPanelBackgroundImageUrl('https://public.solicy.net/21/How_to_Develop_a_Mobile_App_9212b1648e.webp'),
                EasyFooterPlugin::make()
                    ->withLogo(
                        Vite::asset('resources/images/softok2_logo.png'),
                        'https://softok2.com',
                        'Desarrollado por',
                    )
                    ->withLinks([
                        ['title' => '+20 años de soluciones digitales', 'url' => 'https://softok2.com'],
                    ])
                    ->withBorder(),
        ]);
```

4. Add the following to your `app.js` file to process static assets with vite:

```
import.meta.glob([
    '../images/**',
    '../fonts/**',
]);
```

5. Finally, in your AppServiceProvider, add the following to register the sidebar toggle hook:

```
use Filament\Support\Facades\FilamentView;
use Filament\View\PanelsRenderHook;

public function boot(): void
{
    FilamentView::registerRenderHook(
        PanelsRenderHook::SIDEBAR_LOGO_AFTER,
        fn (): string => view('filament-starter-kit::hooks.sidebar-toggle')->render()
    );
}
```

Testing
-------

[](#testing)

```
composer test
```

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)

- [franky](https://github.com/softok2)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance70

Regular maintenance activity

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

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

200d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/37a9b850e36d804c001c1016a373c104b356716405918bc6f07f45bfca15efd5?d=identicon)[softok2](/maintainers/softok2)

---

Top Contributors

[![frcamposalmarales](https://avatars.githubusercontent.com/u/39931475?v=4)](https://github.com/frcamposalmarales "frcamposalmarales (6 commits)")[![softok2](https://avatars.githubusercontent.com/u/20829145?v=4)](https://github.com/softok2 "softok2 (3 commits)")

---

Tags

laravelfilament-starter-kitsoftok2

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/softok2-filament-starter-kit/health.svg)

```
[![Health](https://phpackages.com/badges/softok2-filament-starter-kit/health.svg)](https://phpackages.com/packages/softok2-filament-starter-kit)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M626](/packages/spatie-laravel-data)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

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