Azorky
Azorky
FFilament
Created by Azorky on 4/5/2024 in #❓┊help
Async notifications
The OCR takes 5 seconds or so, so ideally I want the user to upload something, see some kind of notification, and 5 sec later his whole form is filled in. Is that possible with a queue, to fill in the form from a job?
9 replies
FFilament
Created by Azorky on 4/5/2024 in #❓┊help
Async notifications
Thanks for the quick response!
9 replies
FFilament
Created by Azorky on 4/5/2024 in #❓┊help
Async notifications
I tried using $livewire->dispatch(), but same result
9 replies
FFilament
Created by jaocero on 12/9/2023 in #❓┊help
Uncaught Snapshot missing on Livewire component with id: 5k8cfyjIWCqpkMXB2LHv
Thank you!
27 replies
FFilament
Created by jaocero on 12/9/2023 in #❓┊help
Uncaught Snapshot missing on Livewire component with id: 5k8cfyjIWCqpkMXB2LHv
Hey @jaocero , How were you able to solve this exactly? I'm following the same steps as you here, but my modal is not opening at all now
27 replies
FFilament
Created by Azorky on 1/31/2024 in #❓┊help
How can I change the redirect url of the cancel button on the create page?
Thanks for the tip. I used this to make the cancel button redirect to itself, causing the screen to refresh:
protected function getFormActions(): array
{
return [
Actions\CreateAction::make()
->submit('save')
->label('Aanmaken'),
Actions\Action::make('cancel')
->label('Annuleren')
->color('gray')
->url($this->getResource()::getUrl('create', ['project' => $this->project->id])),
];
}
protected function getFormActions(): array
{
return [
Actions\CreateAction::make()
->submit('save')
->label('Aanmaken'),
Actions\Action::make('cancel')
->label('Annuleren')
->color('gray')
->url($this->getResource()::getUrl('create', ['project' => $this->project->id])),
];
}
4 replies
FFilament
Created by Azorky on 1/20/2024 in #❓┊help
Toggle afterStateUpdated call action
In a form
14 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
Thanks for helping out!
21 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
Whilst you can't pass a closure to columns, you can with columnSpan
21 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
->columnSpan(fn (Get $get) => $get('project_id') ? 3 : 4)
->columnSpan(fn (Get $get) => $get('project_id') ? 3 : 4)
21 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
Found it! 🙂
21 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
No description
21 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
Good idea!
21 replies
FFilament
Created by Azorky on 1/20/2024 in #❓┊help
Toggle afterStateUpdated call action
So far I haven't found a way, bit it would be a nice feature (in case it doesn't exist of course)
14 replies
FFilament
Created by Azorky on 1/20/2024 in #❓┊help
Toggle afterStateUpdated call action
That would be awesome, I appreciate it!
14 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
No description
21 replies
FFilament
Created by Azorky on 1/20/2024 in #❓┊help
Toggle afterStateUpdated call action
No description
14 replies
FFilament
Created by Azorky on 1/24/2024 in #❓┊help
Split item width
Yes I'm using split, but I can't figure out way to have a fixed with or something like that
21 replies
FFilament
Created by Azorky on 1/20/2024 in #❓┊help
Toggle afterStateUpdated call action
Maybe with an action in afterStateUpdated or something?
14 replies
FFilament
Created by Azorky on 1/12/2024 in #❓┊help
Import csv causes infinite loop, bug?
No description
7 replies