LH
LH
FFilament
Created by _𝕰𝖋x on 2/26/2024 in #❓┊help
Not Loading Data from Fieldset->relationship()
@_𝕰𝖋x your hasOne relation method in model class - it is named 'metadata' right?
8 replies
FFilament
Created by malebestia. on 2/26/2024 in #❓┊help
Slowness on the server
@malivodka Maybe there is some queries that are slow - you can use this package to debug your queries https://github.com/barryvdh/laravel-debugbar
6 replies
FFilament
Created by _𝕰𝖋x on 2/26/2024 in #❓┊help
Not Loading Data from Fieldset->relationship()
@_𝕰𝖋x Don't know if it will work, but you can try this
Select::make(metadata.title)
Select::make(metadata.title)
8 replies
FFilament
Created by Jessy on 2/26/2024 in #❓┊help
How to add tooltip to CheckboxList component
@Jessy Don't know if it is Checkbox in form or table. But the way I do it
->tooltip(function (Tables\Columns\CheckboxColumn $column): ?string {
$state = $column->getState();

if ($state) {
return 'In stock';
}

return 'Out of stock';
})
->tooltip(function (Tables\Columns\CheckboxColumn $column): ?string {
$state = $column->getState();

if ($state) {
return 'In stock';
}

return 'Out of stock';
})
4 replies