Filament

F

Filament

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

Join

FileUpload .xlsx

Hey everyone! 👋 I’m working on a Filament v3.2 app and I’m running into an issue when trying to upload files in a resource form. It works fine for .pdf and .png, but fails when I try to upload .xlsx files. From what I’ve read, it seems like Filament supports .csv but not .xlsx. Has anyone dealt with this or found a workaround? Ideally, I’d love to be able to upload Excel files. Any tips or direction would be super appreciated. Thanks in advance! 🙏...

problem with user_id

Cannot add or update a child row: a foreign key constraint fails

Test anonymous action in forms

Hey, I'm writing feature tests in my panel tho I have a problem. I can't seem to find a way to test actions in the component "Actions". I tried multiple things: - try every keys possible (Actions component key, "data.actionNameAction" as it is the key of the component, "actionName") - try to mount the action (no errors) then to call mounted actions (errored) - call action directly in test without using the form methods...

How can I pass size parameter to the ToggleButtons component ?

Any idea ? Bonus : I would like to have very big buttons, maybe more than the XL option 🙂...

Please help me to fix tailwindcss issue

Hey mates, I am install Filament 3.3 in Laravel 12 . When i create custom pages design then many tailwind classes not loaded. Can you help me please? Thanks

ExposesTableToWidgets throws error

So I am in a view order pages for an order resource, and i have added a widget. i'm trying to get the record, in the page I use ExposesTableToWidgets, but I get the livewire error Property [$activeTab] not found on component: In the trait the code is as follows: ``` public function getWidgetData(): array...

Filament Export Action

Hello, I'm using Filament Export Action and I'm using a relationship to get one of the column. This relationship is working great on the list page, but on the export I'm getting Undefined array key "name_of_the _column". Any suggestions?

Persistent 419 CSRF Error on Livewire File Uploads behind Cloudflare Tunnel

Hey everyone, I'm running into a frustrating 419 CSRF token mismatch error, but only when uploading files via Livewire components. Regular Livewire component updates (POST requests to /livewire/update) work perfectly fine. ...

Form Select relationship with custom search

hi. I want to implement the custom search to the form select component. How can I archive this? I've tried to use the component relationship() with modifyQueryUsing: ($query, $search) callback function but no luck. ...

Select::make('category_id') VS. Select::make('Category')

Curious about the behavior differences. I've seen tutorials that use Select::make('Category') and it works. I tried this method and it worked, until it didn't. It stopped working on creating, but continued working on update. I do understand documentation is Select::make('category_id') and that is what I am using, but I am just trying to get a better understanding. Does Filament (or Laravel) under the hood understand the relationship on update, but maybe not create? ```php...
Solution:
It’s because ‘category’ exists as a relationship on the model so the field resolves it as such and tries to handle it appropriately. But if the relationship isn’t quite right the it falls apart so explicitly defining the relationship through the field modifiers make it work correctly.

How do i change SubNavigation Label?

How can i change this sub navigation label or make it translateable?
Solution:
use navigationLabel in the ViewProduct.php, EditProduct.php ```php protected static ?string $navigationLabel = 'Custom Label'; ...
No description

KeyValue not saving new order

Hopefully someone has an idea where I'm going wrong - I have this inside a repeater: ``` KeyValue::make('options.select_options') ->label('Select Options') ->columnSpan('full')...

phpstan 'Access to an undefined property'

Learning phpstan. I am trying to figure out what the correct way to handle phpstan errors on some things are. Is there a good way to define this or do you just ignore the line. ```php message: '#^Access to an undefined property Closure|Illuminate\Database\Eloquent\Model::$name.$#'...

No action on Submit on the last step of Wizard Step

I am using the HasWizard trait on the CreateRecord of a resource and after completing all the validations and entering all the fields of form on the Wizard Steps, the Submit button does nothing. No network calls as well. Do I need to do anything specific to create the record on the resource?

CSRF Mismatch

I'm trying to setup connected login with Sanctum / Next.js Currently This is my setup ```php...

Filament-forms Italian language files partially translated

Good evening, I noticed that the file of the Italian language, compared to the English one, lacks several blocks. If anyone can help I attach what I personally completed by inserting the missing blocks based on the original English....

Repeater in a Custom Page Not Loading HasMany Relationship Data

I'm working on a Custom Page in Filament v3 and trying to display a HasMany relationship inside a Repeater. The issue is that the repeater correctly generates the right number of items, but the fields remain empty....

Is there any way to Refresh Summarizer?

Hi, I have this kinda page where I utilise Filament Relation Manager and Summarizer The case is: whenever I update the Tax of item inside the relation manager table, I also need to refresh the rendering of the table summarizer. Can anyone help me? Thanks...
No description

Guidance custom field

Hi, Im looking for someone that can guide me with creating a custom field in Laravel Filament. Will be by discord and I will pay for it (don't know if this is the right channel so if im wrong, correct me). Custom field is about using data from the active form in that component....

Bulk action error after updating

Hi, I updated filament from v3.2.135 to v3.3.7 and now the bulk actions in tables have errors. When I select a record, the bulk actions don't appears and shows this error on the browser console: ```...
Next