Sort cluster navigation
protected static ?int $navigationSort = 3;
does not work for it.Change Url Address
Login Page Additional Content
Customized action button "Apply"
mount()
method of the CreatePageIs there a resource where we can find filament's HTML (not in a blade component format)?
Model instance isn't updating
saved
notification, but on accessing the model again it reverts to the previous state. Attached is the character panel code. I originally thought it was my polocies, but I set everything to true and the issue still persists.
Update: Name and Rank is updating, every other field reverts to the previous state....Dinamically control content of <x-filament::modal>
<x-filament::modal
with details about that specific model.
Since it's a high number of models, this page is becoming incredibly slow, I was given the task to optmize it. I thought about the idea of having only one modal on the page and dinamically change the contents inside it before opening after I click one of the models Open modal
button.
The problem is: I couldn't find a documentation page talking about doing this. My knowledge about livewire, while not zero, isn't great. Can someone point to a docs page of an article where this is done (if one exists) so I can get a better grasp about this idea?...filament contribution
Applying Custom Stilization Via "Hook Classes"
Progressively adding Filament to an existing admin panel
Manually getting media
enum value in Forms\Components\Select
Table actions / alpine / livewire UI
Reset table pagination after reactive property changes
Make the 'Table Action Buttons' Sticky when scrolling left to right
Why is filament clone so large?
git clone the_repository_url --depth=1
, if you don't need the Git history, sometimes it's a bit smaller, but not alwaysTailwind class "!" prefix removed when using Panel from custom package
!max-w-[14rem]
class in dropdown by default. I can see this class in css output generated by Filament and also in my custom theme. But when I load a panel from my package, the !
prefix is gone in html! When I have a fresh Laravel app with filament inside, the prefix is there.
Any ideas what could I check to debug it?...requireconfirmation for notification action
Typed property Filament\Tables\Filters\BaseFilter::$table must not be accessed before initialization
ExposesTableToWidgets
and InteractsWithPageTable
traits . The table has 9 different filters. 8 out of these 9 filters work great and filter the table and the widgets react to the filtered table.
However, one of these filters, the only one that is a relationship to the data causes an exception to be thrown.
I'm not sure how to even begin troubleshooting this but this is the filter causing an issue:...kenneth-sese-advanced-tables
plugin and it turns out I had to use the exact column name as the filter name. Therefore adding account.name
to the make method resolved my issue.
```php
Tables\Filters\SelectFilter::make('account.name')
->label('Account')...User administration for tenants
getEloquentQuery()
method on the Resource and add a ->where()
clause when the user is a tenant