Filament

F

Filament

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

Join

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?
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: ```...

my filament file upload stuck at 100% like the picture i send

i see that when the indicator reaches 100%, an error like in the console section appears. i am using filament 3 and laravel 12
No description

Issue on laravel filament file upload : when the length of filename is long

When the file name is like this "farming-agriculture-field-with-copy-space-blue-sky-overgrown-grass-fenced-isolated-farming-area-farm-with-lush-trees-yellow-green-grass-looks-beautiful-rural-countryside-nature_590464-74263.jpg", I got an issue "Unable to retrieve the file_size for file at location".
No description

Filter form on the sidebar

I want the filter form on the dashboard page to be on the sidebar. I have tried creating a custom layout, but then the Using $this when not in object context error is thrown. I have tried render hooks, but I can't get it to work. Any help?

How to exlclude user role (customer) in relation manager?

The case is want to exclude user customers in the list I tried this but not working whole code...
Solution:
Solved: instead I add this to the table ->modifyQueryUsing(fn (Builder $query) => $query->where('role','!=', Role::Customer->value))...

What's the correct approach to load filament styles in a frontend page?

I have created a Livewire full page component rendering a form using Filament's form builder as per the docs: https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component. What's the correct approach to load the necessary base styles for the form? My layout file includes the following section in the head: ```...

How can i disable livewire update POST request to {{domain}}/livewire/update

I have tried searching for disabling it in filament docs, searched panel functions, searched whole internet and asked AI agents but could not find the solution. How should I disable it. I have simple panel with one resource, and i am in list view page....
No description

Restrict non filament panel user, accessing filament admin panel.

I am using laravel v11, with filament and livewire, i have admin panel using filament while normal user can sign-in without filament. Problem is when Admin user logs out and normal user logs-in, it redirect user to domain/admin page which is filament admin panel and shows 403 error. What i want is to redirect normal user to domain/dashboard page which is not a filament page or resource....

Listen to Theme Switcher Event or Read the Current Theme Mode State

Hey, I would like to know how a widget (a ChartWidget) is aware of the current theme mode. The goal is, I want the chart border color changes depending on the current theme mode. If it is dark, I want to use lighter colors for better contrast....
Next