Filament

F

Filament

A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire

Join

Request Problem crud operation

When I try to do crud operations, the following happens: it is sent and gets stuck. Then when I start again, the action has already occurred, for example, delete, update, write. How do I fix this? Nothing like this has happened before. It only happened after installing the filament.
No description

help me! i have laravel 11 with filament v3

When I send a delete, update, add, it behaves like in the photos, then when I restart the project, the action has already been done, for example, if I delete it, it crashes and shows "localhost refused to connect." But when I restart it, it already appears deleted.
No description

getPages not working on Custom Page

I am trying to redirect a View Custom page to another Custom Page. So I added this on Notificaiton custom Page ```...
Solution:
Was able to solve it by using this on custom page protected static ?string $slug = 'notification/{slug}/edit';
No description

Does anyone know where the code is that triggers a save on forms panels when command + s are pressed

I'm want to submit a PR to adjust this behaviour as the strikethrough short keys trigger the save when focused into a richtext field. this also works the other way round where if you save it will strikethrough an item before it's saved.

Form builder custom block picker

I'm using the Filament Builder in my form. I have defined multiple blocks. Everything is working as expected. I'm trying to extend the functionality of the block picker. I would like to put certain blocks as "advanced" block. ...

Define multi-tenant relationship indirectly through another model

Hello, I'm working with Filament's multi-tenancy features and I have a question about defining tenant ownership relationships. In my app:...

How do I create a child of a page?

Is is possible to create a custom child page? The notifications/ is the parent, and is also a custom page ...
No description

Toggleable Position change

Hi friends how to change toggleable opened dropdown to modal or slideover?
No description

Infolist RepeatableEntry with an Array

Hello everyone, I've already searched through the documentation and various sources, but unfortunately I couldn't find a solution to my problem. I'm trying to display dynamic data within an Infolist using RepeatableEntry. Here is a minimal example of my code:...

Multi select jumping back to top

Hey. Has this been included/fixed in the latest version that after selecting a value from multi select dropdown, it does not jump back to top? Tried all kids of things, but cant seem to get it to work. 😦

Test Filament v4 Alpha

Hi, is there already any guide how to setup a v4 project? I just want to make some tests also with my integrations
Solution:
It's an alpha, so no: there is no docs for that yet 😅

FileUpload: Run function on file before uploading to S3

I need to detect the duration of a video with something like ffmpeg before it gets uploaded to S3. Is this at all possible, or is the FileUpload streaming to S3 and there's no temporary file on the system that I can run ffmpeg on? Otherwise, I will have to make a background job that downloads the file later and gets the duration....

Disable Importer Column Selection Step

Disable the "Select Columns" step during import (i.e., prevent users from remapping or modifying column mappings)
No description

EditRecord & ViewRecord heading overflow

If you have a really big record name it overflows, makes it so you can't hide the sidebar anymore, and most importantly hides headerActions I know i can shorten it with getHeading && getFilamentName but i wanna support 255 long names on multiple resources. Also tried adding tailwind overflow class in the blade without success. Should i open a github issue ? (didn't wanna bloat it)...
No description

Problem - unknown column when using relationship in select

there's very simillar problem to mine but making it ->multiple() doesnt change anything. https://www.answeroverflow.com/m/1188140922605666374 Column not found: 1054 Unknown column 'services' in 'SET', SQL: update medical_packages set description = {"pl":"BlaBlaBla"}, is_enabled = 1, services = ["32","19","7","48"] ...
Solution:
Hey you have to put ->disabled before ->relationship
When using disabled() with multiple() and relationship(), ensure that disabled() is called before relationship(). This ensures that the dehydrated() call from within relationship() is not overridden by the call from disabled():
@source...
No description

[Question] Filament Page Changes Don’t Take Effect Until Server Restart (Both Locally and on EC2)

Hi, I’m working with Laravel 11+ Filament v3.3.x, and I noticed a strange issue when modifying custom Filament pages (e.g., changing navigation labels or static properties). --- ...

Issue with ExportAction error 403

I'm trying to setup an export for a resource, i managed to follow the documentation and solve the issues caused by the fact i have 3 tables which can authenticate on the system (sadly it's a legacy thing and I can't change it). I reached the point where the file is created but when i try to download it i always get error 403, i think the issue is caused by the fact that it doesn't recognize the Admin model as the current Auth user or is that it doesn't recognize the /filament/exports/{export}/download route as being under filament i tried to override it through a custom middleware but it's still not working. ```php...
Solution:
Apparently all I had to do was using the auth:admin middleware ```php Route::get('/filament/exports/{export}/download', DownloadExport::class) ->name('filament.exports.download') ->middleware([...

Translate custom permissions in shield

I have add some new custom permissions in my filament app, now I need to translate them, I have publish the shield package translation files, but I didn't know where to add the translations, can anyone help me ? Thanks in advance...

Table Search Width Adjustment

Can I adjustment for table search field?for example I want to set width to 700px.

nested groups in tables

Hallo there, I am new to Filament (and laravel at all) and wonder, if there is any way to apply multiple groups to table rows at the same time. like: grouping by month of a date-column and additionally grouping by the week our day (or even both) month: June -- calendar week: 23...