A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.
Filament is a collection of full-stack components designed for accelerated Laravel development. It offers beautifully designed and intuitive components that are fully extensible, making it the perfect starting point for Laravel app development. With Filament, developers can save time by building applications without having to repeatedly recreate common features.
Panel Builder: Combines all the packages in Filament to quickly build Laravel admin panels, customer-facing apps, Software-as-a-Service platforms, and more. It simplifies the process of creating custom CRUD-driven interfaces and deploying them.
Form Builder: Enables the rendering of interactive forms in a Livewire component. It provides over 25 components out of the box and is fully extensible. Developers can easily build stunning forms and add their own custom fields and actions. It seamlessly integrates with action modals and is used by the Table Builder for filtering rows.
Table Builder: Allows the creation of beautiful, optimized, and interactive datatables for any situation. It can be dropped into a Livewire component for easy use. Similar to the Form Builder, it is fully extensible, giving developers the ability to add custom columns, filters, and actions.
Notifications: Provides a way to notify users of important events within an application. The notifications package allows developers to deliver flash notifications to users from any Livewire request or JavaScript frontend. It also supports fetching notifications from the database and rendering them in a slide-over modal. Additionally, it can receive live notifications from a websockets server.
Actions: Offers versatile buttons called actions that open modals. These modals help streamline user tasks by avoiding the need to navigate away from the page. Actions can be used for various purposes such as confirming destructive actions, editing Eloquent records, or importing data from a CSV file. Modals are built using the Form Builder, making them flexible and extensible. They can be easily added to any Livewire component with minimal code.
Infolists: Provides a way to display read-only information about a record to users. Infolists have a flexible layout and can be extended with custom components. They seamlessly integrate with the Panel Builder, making it easy to add them to panel resources.
Widgets: Filament offers a set of widgets built upon Livewire’s real-time reactivity principles. Developers can combine multiple widgets to quickly build dashboards with charts and stats that update live without refreshing the page. The widgets are also seamlessly integrated with any page in the Panel Builder.
To install Filament, follow these steps:
composer require filament/filament
php artisan filament:publish-assets
php artisan vendor:publish --tag=filament-config
php artisan vendor:publish --tag=filament-views
php artisan vendor:publish --tag=filament-lang
php artisan vendor:publish --tag=filament-livewire
Once you have completed these steps, you will have Filament installed and ready to use in your Laravel project.
Filament is a useful collection of full-stack components for Laravel development. It offers features such as the Panel Builder for building admin panels and customer-facing apps, the Form Builder for creating interactive forms, and the Table Builder for optimized datatables. Additionally, it provides packages for notifications, actions, infolists, and widgets to enhance the functionality of Laravel applications. By using Filament, developers can save time and build powerful applications without having to recreate common features.