Ilham Dimas Prayudha
Ilham Dimas Prayudha
FFilament
Created by Ilham Dimas Prayudha on 1/5/2024 in #❓┊help
conditionally hide relation page
That's work for relation manager, what i want is to conditionally hide relation pages https://filamentphp.com/docs/3.x/panels/resources/relation-managers#relation-pages
5 replies
FFilament
Created by Ilham Dimas Prayudha on 11/22/2023 in #❓┊help
SpatieMediaLibraryImageEntry error Attempt to read property "media" on null on RepeaterEntry
When i use SpatieMediaLibraryImageEntry outside RepeatableEntry, it works properly. I got this error when use it inside RepeatableEntry.
8 replies
FFilament
Created by Ilham Dimas Prayudha on 11/22/2023 in #❓┊help
SpatieMediaLibraryImageEntry error Attempt to read property "media" on null on RepeaterEntry
The error message is "Attempt to read property "media" on null"
8 replies
FFilament
Created by Ilham Dimas Prayudha on 11/22/2023 in #❓┊help
SpatieMediaLibraryImageEntry error Attempt to read property "media" on null on RepeaterEntry
Sorry, i already edited it, so this code is on my ProductResource, when i want to make infolist like the code above, it give me error, another entry like TextEntry inside RepeatableEntry is working properly.
8 replies
FFilament
Created by Ilham Dimas Prayudha on 11/22/2023 in #❓┊help
SpatieMediaLibraryImageEntry error Attempt to read property "media" on null on RepeaterEntry
Help?
8 replies
FFilament
Created by Ilham Dimas Prayudha on 10/24/2023 in #❓┊help
Table with Custom Array/Collection Data
In Sushi documentation, it show a static property data, how a about dynamic property
5 replies
FFilament
Created by Ilham Dimas Prayudha on 10/24/2023 in #❓┊help
Table with Custom Array/Collection Data
Thanks, but what if I want to consume data from a property instead of API?
5 replies
FFilament
Created by Imran Khan on 9/26/2023 in #❓┊help
form builder
It's for v3, OP said v2
5 replies
FFilament
Created by thenaquad on 9/13/2023 in #❓┊help
Expandable table row
2 replies
FFilament
Created by GeRaged | Niklas on 9/11/2023 in #❓┊help
Save value from TextInput for sarch
Where you put TextInput::make('query')? Can I see your full code?
11 replies
FFilament
Created by GeRaged | Niklas on 9/11/2023 in #❓┊help
Save value from TextInput for sarch
11 replies
FFilament
Created by GeRaged | Niklas on 9/11/2023 in #❓┊help
Save value from TextInput for sarch
Yes you can, first you need to make TextInput::make('search')->live, then render it in your livewire view component{{ $this->form }}, in your livewire component add this public ?array $data = []; public function mount(): void { $this->form->fill(); } then in your query do like this $products = Product::where('name', ,'like', '%' . $this->data['search'] . '%')->get(); customize form field and query logic as you need. Hope it's help!
11 replies
FFilament
Created by syed_eer on 9/9/2023 in #❓┊help
how can I customise the section's width?
Sorry, try text-primary-500 instead
9 replies
FFilament
Created by syed_eer on 9/9/2023 in #❓┊help
how can I customise the section's width?
Try this ->extraAttributes(['class' => 'text-blue-500'])
9 replies
FFilament
Created by syed_eer on 9/9/2023 in #❓┊help
how can I customise the section's width?
Try like this: Grid::make(4) ->schema([ Section::make() ->columnSpan(3) ->schema([ // ]), Section::make() ->columnSpan(1) ->schema([ // ]), ])
9 replies
FFilament
Created by neneone on 8/31/2023 in #❓┊help
Remove "Laravel" text from Login page
Of course not, it's like we can customize getHeading() in CustomLogin that extend filament Login class, so it will affect in Login Page only. And it's not my problem btw, i'm not the OP, i'm just trying to help too 😅
10 replies
FFilament
Created by neneone on 8/31/2023 in #❓┊help
Remove "Laravel" text from Login page
I think it will be good if Filament have a function like getLogo or getBrand that return string | htmable | View to customize logo/brand
10 replies
FFilament
Created by neneone on 8/31/2023 in #❓┊help
Remove "Laravel" text from Login page
If you just want to remove logo/brand text, you can try overriding hasLogo() with return false in your login class
10 replies
FFilament
Created by neneone on 8/31/2023 in #❓┊help
Remove "Laravel" text from Login page
The problem with this way is that will affect all Simple Page, not good if we just want to customize Login Page only
10 replies
FFilament
Created by Yaeger on 8/19/2023 in #❓┊help
How can I disable dark mode in filament forms?
7 replies