PHPackages                             awcodes/filament-extras - 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. awcodes/filament-extras

ActiveLibrary

awcodes/filament-extras
=======================

This is my package filament-extras

v1.1.1(3y ago)28269↓100%3[1 PRs](https://github.com/awcodes/filament-extras/pulls)MITPHPPHP ^8.0CI passing

Since Jan 16Pushed 4mo ago2 watchersCompare

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

READMEChangelog (4)Dependencies (12)Versions (6)Used By (0)

A collection of components to extend Filament Admin.
====================================================

[](#a-collection-of-components-to-extend-filament-admin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b92a2491e363a7b9c7d9bbc433d9acd310439afa54ced0cdce8193cd12d9a07a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6177636f6465732f66696c616d656e742d6578747261732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/awcodes/filament-extras)[![Total Downloads](https://camo.githubusercontent.com/d95adfd045413ef6e081959d823ef77c557907357d4f5b599cd51442ac647cb4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6177636f6465732f66696c616d656e742d6578747261732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/awcodes/filament-extras)

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

[](#installation)

You can install the package via composer:

```
composer require awcodes/filament-extras
```

Optionally, you can publish the views, assets or translations using:

```
php artisan vendor:publish --tag=filament-extras-assets
php artisan vendor:publish --tag=filament-extras-translations
php artisan vendor:publish --tag=filament-extras-views
```

Theming
-------

[](#theming)

If you are using a custom theme for Filament you will need to add this plugin's views to your Tailwind CSS config. Once this is done you may disable the plugin's stylesheet in the config file by changing 'load\_styles' to false.

```
content: [
    ...
    "./vendor/awcodes/filament-extras/resources/views/**/*.blade.php",
],
```

Admin
-----

[](#admin)

### **Fixed Sidebar Layout**

[](#fixed-sidebar-layout)

Just return it directly from your form function in your model resource.

```
use Awcodes\FilamentExtras\Forms\Components\FixedWidthSidebar;

public static function form(Form $form): Form
{
    return FixedWidthSidebar::make()
        ->mainSchema([...])
        ->sidebarSchema([...])
        ->sidebarWidth(string|int $width = '20rem')
        ->breakpoint(string|int $breakpoint = 'md')
}
```

Forms
-----

[](#forms)

### **Date Input**

[](#date-input)

A native HTML Date input field. Please read the [MDN docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/datetime-local) for more information about using this field.

[![date input](./images/date-input.png)](./images/date-input.png)

```
use Awcodes\FilamentExtras\Forms\Components\DateInput;

DateInput::make(string $fieldname)
    ->label('Publish Date')
    ->withoutTime(bool|Closure $condition = true)
    ->withoutSeconds(bool|Closure $condition = true)
    ->minDate(DateTime|string|Closure|null $date)
    ->maxDate(DateTime|string|Closure|null $date)
    ->timezone(string|Closure|null $timezone)
```

### **Password Generator**

[](#password-generator)

[![password generator](./images/password-generator.png)](./images/password-generator.png)

All methods from TextInput are available.

```
use Awcodes\FilamentExtras\Forms\Components\PasswordGenerator;

PasswordGenerator::make(string $fieldname)
    ->passwordLength(int $length = 12)
    ->hasNumbers(bool $hasNumbers = true)
    ->hasSymbols(bool $hasSymbols = true)
    ->buttonLabel(string|Htmlable|Closure|null $label = 'Generate Password')
    ->buttonSize(string|Htmlable|Closure|null $size = 'md')
    ->buttonColor(string|Htmlable|Closure|null $color = 'primary')
    ->buttonIsOutlined(bool|Closure|null $condition = false)
```

### **Timestamps**

[](#timestamps)

Outputs Created At and Updated At information blocks.

```
use Awcodes\FilamentExtras\Forms\Components\Timestamps;

Timestamps::make()
```

### **Separator**

[](#separator)

Just outputs a sensible hr to help separate components. Can be styled with the color method using Filament theme colors, 'primary', 'danger', etc or with a HEX value, '#bada55'.

```
use Awcodes\FilamentBundle\Forms\Components\Separator;

Separator::make()
    ->color(string $color)
```

### **Heading**

[](#heading)

Just outputs a heading in your forms. Can be styled with the color method using Filament theme colors, 'primary', 'danger', etc or with a HEX value, '#bada55'.

```
use Awcodes\FilamentBundle\Forms\Components\Heading;

Heading::make(string|int $level = 2)
    ->content('This is a test')
    ->color(string $color)
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Adam Weston](https://github.com/awcodes)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance52

Moderate activity, may be stable

Popularity23

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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

Total

4

Last Release

1129d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3596800?v=4)[Adam Weston](/maintainers/awcodes)[@awcodes](https://github.com/awcodes)

---

Top Contributors

[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (19 commits)")[![awcodes](https://avatars.githubusercontent.com/u/3596800?v=4)](https://github.com/awcodes "awcodes (13 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (13 commits)")

---

Tags

laravelawcodesfilament-extras

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/awcodes-filament-extras/health.svg)

```
[![Health](https://phpackages.com/badges/awcodes-filament-extras/health.svg)](https://phpackages.com/packages/awcodes-filament-extras)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)

PHPackages © 2026

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