adic1040
adic1040
FFilament
Created by adic1040 on 8/1/2023 in #❓┊help
Computed value field
Hi! Is there a way to automatically update the filed value everytime computed value changes?
2 replies
FFilament
Created by adic1040 on 5/31/2023 in #❓┊help
Searchable Select limits results
Hi! Is there a limit on number of results that can be shown on Searchable Select field? I have a long list but it truncates it to around 50 options. How to show all the results?
4 replies
FFilament
Created by adic1040 on 4/4/2023 in #❓┊help
__construct being called twice on custom page
class MyPage extends Page
{
public function __construct()
{
Debugbar::info(microtime());
}
}
class MyPage extends Page
{
public function __construct()
{
Debugbar::info(microtime());
}
}
This will output two results: 0.55048200 1680612812 0.55084500 1680612812 Why is that and how to fix it?
2 replies
FFilament
Created by adic1040 on 3/2/2023 in #❓┊help
Load custom LW component
Hi! I'm using Form Builder to just create a layout in Filament Page. Is this the correct way to display custom Livewire component?
Card::make()
->schema([
Placeholder::make('Cart')
->content(new HtmlString(Blade::render('@livewire(\'cart-component\')')))
])
Card::make()
->schema([
Placeholder::make('Cart')
->content(new HtmlString(Blade::render('@livewire(\'cart-component\')')))
])
4 replies