Filament

F

Filament

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

Join

Revealable Password Via Password Component

Hello, is there a way to set password input to have Revealable button?...
No description

how to set the data from input to a form modal

USING FORM & ACTION BUILDER Hi i have a permission tags input and i also have action inside that input the open a modal and from the user can select the permision and the they will see it in tags input i can set the permission to the tags input from the modal but when i open the modal the permission are alway unchecked how can i set the permission form the tags input the the selected permission are checked my code ...

How to set the default selected records in the filament table?

How can I set the default selected record in the Filament table?

Asserting callMountedTableAction with form

How to assert this callMountedTableAction with form? ``` Livewire::test(ListWalletTransactions::class) ->callMountedTableAction('send_money'); // how to add form...

->live(onBlur: true) is not working with Select when ->multiple() is true

Hey there, I'm using filament v3.2 and have a select element in my form. I'm enabling users to select multiple items and then want to perform custom action when user leaves the field. Curretly, I've tried using ->live(onBlur: true) but its not working. It trigger the ->afterStateUpdated() each time i select a value. ``` Select::make('products')...

Load Testing Tools for Filament Application

I have a Filament application and I would like to perform load testing on it. Could you recommend the best tools or platforms for conducting load testing on my Filament application?

how refresh page resource index after imported action

how refresh page resource index after imported action thx u all...

The form will be refreshed after uploading

The form will be refreshed after uploading

Spatie laravel-translatable

I am making an infolist resource then I want to display data from a relationship, the data appears successfully but the translation is not successful, even though in the filament view I have used translatable in the lits table it can be translated but in the infolist it can't, can anyone help, currently my code is only like this TextEntry::make('location.name') ->label('Location'), TextEntry::make('location.address')...

Recommendations for Load Testing Tools for Filament Application

I have a Filament application and I would like to perform load testing on it. Could you recommend the best tools or platforms for conducting load testing on my Filament application ?

are there any packages to allow users to manipulate an image when uploading?

I am currently using the Spatie media library which has a section for manipulations in the plugin docs, but If you want "media specific" manipulations, wouldnt hat imply that the user should have an opportunity to define the manipualtion? otherwise every image uploaded through that input would end up with the manipulation. as defined in the docs ' #Storing media-specific manipulations You may pass in manipulations that are run when files are uploaded using the manipulations() method:...

Installation Process..?

```PS C:\Users\Admin\Herd\disutils-main-dashboard> composer require filament/filament:"^3.2" -W
The "3.2" constraint for "filament/filament" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints ./composer.json has been updated Running composer update filament/filament --with-all-dependencies Loading composer repositories with package information...

Can I sort table on non-column data

I know tables sort at the SQL level. That's why sorting like this does not work out of the box in Filament: ```php TextColumn::make('days-past-due')->label('Past due') ->color('danger') ->visible(fn ($livewire) => $livewire->activePresetView == 'to-do-now')...

to update a field in one livewire component from another lw component.

I structured a form with Splits and Sections to make the layout I want. ( I'm sure there are other better ways to do that.) These call Livewire:make(..) and all is mostly nice looking for my purposes. I would like an action in one livewire component to update a textbox in another livewire component. Is this the job of $set() & $get()?...

Scan barcode repeater

I wanted to create a warehouse management project, and I wanted to use filamentphp, and I wanted to use repeater to enter and exit products from a warehouse, and I wanted to use a bar code scanner, but none of it had worked for me before.

InteractsWithRecord + Clusters = Not possible?

Using custom Filament page (\Filament\Pages) Page is within a Cluster. What I want to achieve: Having user/{tenant}/cluster/{model}/page work - working with a specific record in a custom Page, where the Page is inside a Cluster....

Notification action not working

```php Notification::make() ->title('Copy your token') ->body('Make sure to copy your new token now. You won't be able to see it again.') ->persistent()...

Lazy load tab

I have a view page with multiple tabs for the infolist. One of the tabs does not need to be accessed often, and accessing a rate limited API. Therefore I would only like the contents of the tab to load when the user actually goes to that tab. How can I approach this?...