Filament

F

Filament

Filament is a collection of beautiful full-stack components for Laravel.You can get help using it on our Discord.

Join

I need help with bulkaction checkbox

``` class Storage extends Page implements HasForms, HasTable { public function form(Form $form): Form...

Livewire Starter Kit with Filament form and table builder package

Can we use Livewire Starter Kit and Filament packages together? I've tried a few times but couldn't succeed. Has anyone tried and succeeded?

The Notification icon has disappeared...

I recently installed FIlament on a new Laravel 12 project and the notification icon in the header isn't there anymore? Why was it removed? And how do I re-implement it? 😅
No description

How to change a column in users table after reseting password ? (like last_change_password) ?

Hi ! I made a Page for the first time connection of my users, and I have a date column set to null by default. I want to change this to the actual date when they submit the resetpassword form...

How implement visual differences DEV vs PROD?

Hi there, I'd like to have a subtle visual difference between environments - maybe just a different colour for navigation items - what's the simplest way to implement this? Many thanks!...

Header actions on "another" View page broken

What I did: I created another view page as outlined in the docs here: https://filamentphp.com/docs/3.x/panels/resources/viewing-records#creating-another-view-page php artisan make:filament-page ViewRequestApproval --resource=RequestResource --type=ViewRecord I also added actions to the page header as outlined in the docs here: https://filamentphp.com/docs/3.x/panels/pages#header-actions...
Solution:
I don't know what the exact cause was but php artisan filament:optimize-clear fixed the issue. Something must have been cached when setting up my local environment.

trigger action

Action::make('preview') ->label('プレビュー') ->icon('heroicon-o-eye') ->color('gray') ->extraModalWindowAttributes(['class' => 'upload_cover_image'])...
No description

Wrong connection if model and relationship from different connections

Base model from one db connection (not default) and relation (on select) from different db connection (default) -> edit/update model ->update query uses relationship db connection (default). Ofcourse, there is error -> undefined table...

MFA with Fortify and vormkracht10 2fa

I want to add MFA to my Filament app and I wanted to check my understanding was correct about how to proceed and that the packages I'm suggesting work together. We want App and Email codes. A future possibility of SMS would be nice. I have the standard out-the-box Filament login at the moment....

I don't understand how I can refresh a field

I want to use a HintAction on a field and refresh another. with a codebase like this : ```` ...

Integration with supbase/appwrite

Hello I was wondering how can I achieve the above ?

Using slideOver() inside Livewire Component

Hello! i have a filament-page with some livewire components on it. One of them is a LwC with a form....

Modify Query Using with Live

Guys, I’m having an issue: my payment methods are coming up empty. The query is correct, but it simply doesn’t update the SELECT. I’m updating based on the first SELECT. Does anyone know what might be causing this?
Solution:
I did some tests and so was the only way I could make it work
No description

Apex Widgets not showing?

I wanted to add some Apex Widgets, after installing it, i created the widget file, i called the FilamentApexChartsPlugin on the AdminPanelProvider, and then i called it on the blade file i need, but for some reason, they all come up as empty.
No description

Handling Eloquent Query Builder Serialization Securely Between Components

I'm building a Kanban board package with Filament and Livewire. My architecture has a Filament Page that creates an Eloquent query builder which is passed to a Kanban adapter, and then the adapter is passed to a Livewire component. However, I'm hitting both serialization and security roadblocks: when Livewire attempts to hydrate/dehydrate the component state, it can't serialize the Eloquent query builder inside my adapter. Additionally, I'm concerned about securely handling database queries across component boundaries. ```php...

Making searches universally case insensitive for Postgres

I'm using Postgres, is there a recommended strategy for making searches in string columns case insensitive without having to write dozens of search callbacks for the searchable() method?

add confirmation to submit / call requiresConfirmation() on StaticAction

Is there any way to show a confirmation modal on submit of any form modal form? i have a custom bulk action and i want the submit button to show a confirmation prompt.

Override makeUserCommand in vendor folder

I have made a custom user model that does not hold the email or name of the user, these fields are stored in a seperate table that contains more information on the user. I have created a new login and changed the authIdentifiers to make use of username, however I would like the command:
php artisan make:filament-user
php artisan make:filament-user
to make use of the username and simply ask for the username and the password for easy user creation....
Solution:
After posting this I came to that conclusion, I wasn't aware you could override a command by makign a new one with the same signature. Thanks...

After login on the second panel (without multi-tenancy) returns a 404, while everything else works

I have one panel that uses multi-tenancy and another that doesn't. I didn’t change anything on the second panel, but it returns a 404 after login, even though everything else works correctly

Additional actions in wizard step

Hi all, Does anybody know how I can add an additional action into a step within a Wizard? I'd like to add an additional button at the end of my wizard, I've mocked it up in the attached screenshot. Thanks!...
No description