Components
CommunityA collection of handy components that can be used in almost any project, like sidebars, timestamps & more.
Author:
Ralph J. Smit
Package health
BetaAutomated checks of this plugin's Composer package
13 checks
-
Passed:
Current Laravel version supported
—
Package dependencies resolve together with current Laravel
13.0. -
Passed:
Current PHP version supported
—
Constraint
^8.3supports current PHP8.5. - Skipped: Current Symfony version supported
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 115 days ago; last release 115 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Passed: Open security advisories
- Warning: Dependabot PR responsiveness — Stale Dependabot PRs: oldest general PR is 82 days old.
- Passed: Dependabot or Renovate configured
-
Failed:
Dependency update cooldown configured
—
No cooldown configured in
.github/dependabot.yml. View details on Plumb - Passed: Provides a security policy
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation

This package is a collection of handy components for you to use in all your Filament projects. It provides handy components that can be used in almost any project, like sidebars, timestamps & more.
PRs are welcome, so if you've made a handy component yourself, feel free to send a pull request!
#Installation
You can install the package via composer:
composer require ralphjsmit/laravel-filament-components
#Usage
Currently, the following components are available:
#Sidebar
You can use the Sidebar component to split the form into two distinct sections, like a sidebar:
use RalphJSmit\Filament\Components\Forms\Sidebar;
Sidebar::make([
// Components for the main section here
],[
// Components for the sidebar section here
])
If you're using it in the Admin panel, you can use the Sidebar in your form() method:
use Filament\Forms\Components\Section;
use Filament\Forms\Components\TextInput;
use Filament\Resources\Form;
use RalphJSmit\Filament\Components\Forms\Timestamps;
use RalphJSmit\Filament\Components\Forms\Sidebar;
public static function form(Form $form): Form
{
return $form->schema([
Sidebar::make([
Section::make()
->schema([
TextInput::make('title')->label('Title'),
// ...
]),
// ...
], [
Section::make()
->schema([
...Timestamps::make(),
// ...
]),
// ...
]),
]);
}
Sidebars work very nicely with the Section component to define distinct and easily scannable sections in your interface.
#Timestamps
Use the Timestamps component to display a 'Created at' and 'Updated at' timestamp for your record:
use RalphJSmit\Filament\Components\Forms\Timestamps;
return $form->schema([
...Timestamps::make(),
//
]);
The Timestamps component returns an array with the CreatedAt and UpdatedAt components below, so you should use array spreading like in the example to merge the components into your own array.
#CreatedAt
Use the CreatedAt component to display the created_at timestamp for your record:
use RalphJSmit\Filament\Components\Forms\CreatedAt;
return $form->schema([
CreatedAt::make(),
//
]);
#UpdatedAt
Use the UpdatedAt component to display the updated_at timestamp for your record:
use RalphJSmit\Filament\Components\Forms\UpdatedAt;
return $form->schema([
UpdatedAt::make(),
//
]);
#DeletedAt
Use the DeletedAt component to display the deleted_at timestamp for your soft-delete record:
use RalphJSmit\Filament\Components\Forms\DeletedAt;
return $form->schema([
DeletedAt::make(),
//
]);
#Timestamp
Use the Timestamp component to display a custom timestamp for your record. Internally, all of the above timestamps
use this component.
use RalphJSmit\Filament\Components\Forms\Timestamp;
return $form->schema([
Timestamp::make('email_verified_at'),
//
]);
#General
🐞 If you spot a bug, please submit a detailed issue and I'll try to fix it as soon as possible.
🔐 If you discover a vulnerability, please review our security policy.
🙌 If you want to contribute, please submit a pull request. All PRs will be fully credited. If you're unsure whether I'd accept your idea, feel free to contact me!
🙋♂️ Ralph J. Smit
The author
From the same author
SEO
This package is a convenient helper for using the laravel-seo package with Filament Admin and Forms.
Author:
Ralph J. Smit
Notifications Pro
Seamlessly integrate Laravel database notifications with Filament.
Author:
Ralph J. Smit
Onboarding Manager Pro
Beautiful onboarding experiences for Filament Admin.
Author:
Ralph J. Smit
Upload Pro
A beautiful, advanced & high-performance upload experience for Filament.
Author:
Ralph J. Smit
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle