Dan Harrin
Dan Harrin
FFilament
Created by bernhard on 4/29/2025 in #❓┊help
Resource Page outside filament
Why is it a Filament page at that point, you can register a controller outside Filament but still have the route look like it is part of Filament
6 replies
FFilament
Created by zeshan77 on 4/29/2025 in #❓┊help
SpatieTagsColumn::cacheState does not exist
Ensure that the version of the tags plugin you are using matches the main Filament tables version
2 replies
FFilament
Created by o.m on 4/28/2025 in #❓┊help
Added new Resource but it is not showing on the left navigation?
22 replies
FFilament
Created by o.m on 4/28/2025 in #❓┊help
Added new Resource but it is not showing on the left navigation?
lol
22 replies
FFilament
Created by o.m on 4/28/2025 in #❓┊help
Added new Resource but it is not showing on the left navigation?
THIS NEEDS TO BE REENABLED ONCE WE START THE MIGRATION TO FILAMENT
22 replies
FFilament
Created by o.m on 4/28/2025 in #❓┊help
Added new Resource but it is not showing on the left navigation?
TODO
22 replies
FFilament
Created by o.m on 4/28/2025 in #❓┊help
Added new Resource but it is not showing on the left navigation?
share the AdminPanelProvider
22 replies
FFilament
Created by o.m on 4/28/2025 in #❓┊help
Added new Resource but it is not showing on the left navigation?
do you have a policy for this model
22 replies
FFilament
Created by lmtc on 4/2/2025 in #❓┊help
KeyValue not saving new order
The order could be reset by PHP, JS or your database, object order is never really guaranteed, only array items with numeric keys
14 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
we have over a million docs page views a month, such a bot would cost money that 1) we dont have 2) would be better donated to project development
81 replies
FFilament
Created by morty on 4/23/2025 in #❓┊help
Global search query is pulling in trashed models
Yeah sure, please open an issue
14 replies
FFilament
Created by morty on 4/23/2025 in #❓┊help
Global search query is pulling in trashed models
i guess the resource stub could be updated so when we include the geteloquentquery modification, we also include getglobalsearcheloquentquery to apply the scope
14 replies
FFilament
Created by frame on 4/23/2025 in #❓┊help
Rich editor or Tiptap Editor plugin
Both support HTML, there is no special format
4 replies
FFilament
Created by mwema on 4/15/2023 in #❓┊help
Is it possible to hook to the table reorder event, when someone clicks the tick after reordering?
Is your intention to come across as demanding?!? No, there is no hook at the moment. You can extend the method on the List/RelationManager class, or submit a PR for something like $table->afterReorder(fn () => ...) to v4
public function reorderTable(array $order, int | string | null $draggedRecordKey = null): void
{
parent::reorderTable($order, $draggedRecordKey);

// do your thing
}
public function reorderTable(array $order, int | string | null $draggedRecordKey = null): void
{
parent::reorderTable($order, $draggedRecordKey);

// do your thing
}
9 replies