Groli
Groli
FFilament
Created by Groli on 7/28/2024 in #❓┊help
Why can't I attach record to HasMany - BelongsTo relationship through relation manager?
Thanks!
5 replies
FFilament
Created by Groli on 7/26/2024 in #❓┊help
Can not get filament views working in 404 view file
Thanks for that but can you explain me please also what exactly is happening when I wrap the stuff above in a simple page and get this error: Using $this when not in object context. Should I also create some class or what's wrong?
7 replies
FFilament
Created by Groli on 7/20/2024 in #❓┊help
How can you close notification from ActionGroup that is inside its actions?
I have an ActionGroup like this:
// ... my notification
->actions([
ActionGroup::make([
Action::make("some-id")
->label(...)
->button()
->close()
->dispatch(...);
])
->label('Group label')
->color('gray')
->button(),
])
// ... my notification
->actions([
ActionGroup::make([
Action::make("some-id")
->label(...)
->button()
->close()
->dispatch(...);
])
->label('Group label')
->color('gray')
->button(),
])
As this code is located inside Notification inside its actions I would like to close the whole notification (as is possible from normal action outside ActionGroup to do). I understand that it's logical that it closes (if it's inside ActionGroup) the group itself. But I would like to close the whole notification from there somehow... That's my problem, I'm currently trying to get around.
4 replies
FFilament
Created by Groli on 7/22/2024 in #❓┊help
How would you make primary file chooser out of list of files?
Thank you for the suggestion, I really appreciate it!
4 replies
FFilament
Created by Groli on 7/20/2024 in #❓┊help
How can you close notification from ActionGroup that is inside its actions?
Anyone able to help?
4 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
Thank you!
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
my bad
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
I though you were talking about something else
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
sorry
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
what you've ment
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
Yeah, at first I didn't understand correctly
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
oh okay, thank you, I didn't know it could be done like that...
14 replies
FFilament
Created by Groli on 7/19/2024 in #❓┊help
Possible bug in communication with livewire while passing data through dispatch?
Does anyone know?
14 replies
FFilament
Created by Groli on 7/14/2024 in #❓┊help
How and where to create listener for notification dispatch button event?
Sorry, I thought that I need to put listeners in some separate component file. Now I know where to put them... Sorry again for wasting time.
4 replies
FFilament
Created by Amer Almoghrabi on 6/23/2024 in #❓┊help
delete action confirmation: add a check box if the user wants to delete associated relations or not
maybe check this out: https://filamentphp.com/docs/3.x/actions/modals#modal-forms or just add button to actions that would remove those relations as well
3 replies
FFilament
Created by Groli on 6/21/2024 in #❓┊help
Adding navigation inside cluster to CreateRecord page
thanks
5 replies
FFilament
Created by Groli on 6/4/2024 in #❓┊help
How can you customize record title on attach action
Thank you so much, I didn't know I can do it like this.
12 replies
FFilament
Created by Groli on 6/4/2024 in #❓┊help
How can you customize record title on attach action
id is a string with nine chars and a start is an integer so this doesn't make sense to me
12 replies
FFilament
Created by Groli on 6/4/2024 in #❓┊help
How can you customize record title on attach action
No description
12 replies
FFilament
Created by Groli on 6/4/2024 in #❓┊help
How can you customize record title on attach action
->headerActions([
Tables\Actions\AttachAction::make()
->form(fn(AttachAction $action): array => [
$action->getRecordSelect()
->getOptionLabelFromRecordUsing(fn (Model $record) => "{$record->id} {$record->start}")
]),
])
->headerActions([
Tables\Actions\AttachAction::make()
->form(fn(AttachAction $action): array => [
$action->getRecordSelect()
->getOptionLabelFromRecordUsing(fn (Model $record) => "{$record->id} {$record->start}")
]),
])
12 replies