Pasteko
Pasteko
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
class BugReport extends Component If I replace Component by Page nothing works 😛
19 replies
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
I'm just trying to get the current breadcrumb for any page or resource to let user report bugs without filling the path.
19 replies
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
it gives that : Method App\Livewire\BugReport::getBreadcrumbs does not exist.
19 replies
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
Can I call that from a livewire component?
19 replies
FFilament
Created by gizmojo on 1/24/2024 in #❓┊help
How to hook into 'create another' action
I'm in the same boat, have you found a way to do this?
6 replies
FFilament
Created by HL on 10/24/2023 in #❓┊help
Modify SelectFilter query based on another SelectFilters value (Dependent Filters)
Thanks for your work, it helped me a lot today! 🙂
14 replies
FFilament
Created by EL REKT on 2/4/2024 in #❓┊help
Many to many Relationship
Hello, I was having the same problem and solved the issue like this : https://discord.com/channels/883083792112300104/1143937436917960836/1144036702634123435
3 replies
FFilament
Created by leoblanski on 12/11/2023 in #❓┊help
Redirect to login page showing error
Hello, I'm trying to achieve the same result, have you found a solution?
8 replies
FFilament
Created by HL on 10/24/2023 in #❓┊help
Modify SelectFilter query based on another SelectFilters value (Dependent Filters)
14 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
Maybe I have to use ->afterStateUpdated with the TextInput, is it possible to set the select options with?
16 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
No problem, your help was already precious.
16 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
https://filamentphp.com/docs/3.x/forms/advanced#dependant-select-options I'm close to something. It's working but I need the first value to be displayed in the select, now I have to click to see all the values.
TextInput::make('zip_code')
->live(),
Select::make('city_id')
->options(fn (Get $get): Collection => ZipCode::query()
->where('code', $get('zip_code'))
->pluck('city', 'id'))
->required()
->native(false),
TextInput::make('zip_code')
->live(),
Select::make('city_id')
->options(fn (Get $get): Collection => ZipCode::query()
->where('code', $get('zip_code'))
->pluck('city', 'id'))
->required()
->native(false),
16 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
I'm trying, thank you.
16 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
No description
16 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
No description
16 replies
FFilament
Created by Pasteko on 10/23/2023 in #❓┊help
Select dependant from TextInput
Thanks, ->searchable() works fine for the select but I have to reproduce the functionality where the user types the zipcode in text field.
16 replies
FFilament
Created by Pasteko on 10/13/2023 in #❓┊help
Shared hosting deployment
It gives me : Class "App\Providers\Filament\Livewire" not found
5 replies
FFilament
Created by Pasteko on 10/10/2023 in #❓┊help
->modifyQueryUsing with relations
Thank you, it's working!
5 replies
FFilament
Created by Pasteko on 8/29/2023 in #❓┊help
Form Toggle relationship
Thanks to Dan Harrin — just wrap it in a Group and apply the relationship there Group doesnt have any styling
11 replies
FFilament
Created by Pasteko on 8/29/2023 in #❓┊help
Form Toggle relationship
Dotted relations work for table, not forms.
11 replies