No data on textarea, input and select on modal when update or view
Uncaught ReferenceError: state is not defined
Uncaught ReferenceError: state is not defined
Is anyone having livewire 3.5.13 issues? Black splash screen.
Page rendering issue
Overriding paginateTableQuery doesn't work on Widgets
Issue with reordable table
help with repeaters and updating data pls
Order of Clusters in Navigation
protected static ?int $navigationSort = 1;
protected static ?int $navigationSort = 1;
Any way to make checkbox readonly but not disabled ?
Checkbox::make('done')
->inlineLabel();
Checkbox::make('done')
->inlineLabel();
->dehydrated()
as in the docs:
Toggle::make('is_admin')
->disabled()...Change the label of the 'All Model' summary in a filament table?
Getting filament to use my own getLabel() implementation
Filament\Tables\Columns\Column
uses the Concerns\HasLabel
trait.
Inside this trait, there is a method named getLabel()
I would like to customize it a little bit.
First, I duplicated the original HasLabel.php
to put it under app/Filament/Tables/Columns/Concerns
project folder and customize the getLabel()
method to just return a test string:...fillament-php multitenancy implementation
Como trocar o titulo da relation ?
Select make on attribute that is an array
roles
attribute on the model is using casts to convert a csv value like this admin,student
convert it to ['Role::Admin','Role::Student'] when i am accessing the $user->roles. I am not...Import with relation.
How do I generate a random reference?
reference
field that I want to automatically generate a random identifier for.
The user opens the record creation page, and the default value is "INV-0001" or "INV-4829" (haven't decided if I want it to be random or incremented yet).
How do I do that?...->default(fn() => 'INV-' . Str::random(4) )
->default(fn() => 'INV-' . Str::random(4) )
Reactive Fields
->live()
and put the logic inside the ->disabled(fn(Get $get)=> !$get('purchase_order_id'))
Access JSON and display in a table
Relation Managers
php artisan make:filament-relation-manager ProductResource categories name
Product Model
...Repeater and many-to-many (belognsToMany, morphsToMany) not saving
belongsToMany
or morphToMany
relations.Having this structure with
Product
, Option
and a pivot table ConnectedModel
, and after a lot of debuging I think Filament does insert the rows in the pivot table but it deletes it for some reason when using ->saveRelationshipUsing()
, because is trying to save it again for some reason and there is no way as I see to disabled the auto relation save and allow only the manual save to avoid this.
Product class
...How can save each step of a Wizard form when on next button ?