Mark Chaney
Mark Chaney
FFilament
Created by Exi on 4/6/2025 in #❓┊help
500 error on FilamentPHP panel after installing Laravel Octane
I wouldn’t recommend octane with it. I’m sure other people have success with it, but I don’t think it’s worth the trouble and isn’t meant for that this type of application imho
11 replies
FFilament
Created by Mark Chaney on 3/24/2025 in #❓┊help
Default Resource Index instead of Dashboard for Panel?
thanks guys for the ideas, will try those out
8 replies
FFilament
Created by Mark Chaney on 3/24/2025 in #❓┊help
Default Resource Index instead of Dashboard for Panel?
@toeknee seems more like a hack. Could definitely be done though.
8 replies
FFilament
Created by Leiner v on 3/4/2025 in #❓┊help
Filament's performance
If you are using debugbar, make sure you configure it to be friendly with livewire too or else it will really slow everything down https://daudau.cc/posts/fixing-filament-app-slowness-when-using-laravel-debug-bar
26 replies
FFilament
Created by Mark Chaney on 3/3/2025 in #❓┊help
Table deferLoading() and Tests
Oop, just found loadTable() should be used according to the docs.
5 replies
FFilament
Created by Ricardo Sawir on 9/15/2023 in #❓┊help
validate before requires confirmation
found a solution
->requiresConfirmation()
->modal(function () {
try {
$this->form->getState();
return true;
} catch (\Exception $e) {
return false;
}
})
->requiresConfirmation()
->modal(function () {
try {
$this->form->getState();
return true;
} catch (\Exception $e) {
return false;
}
})
6 replies
FFilament
Created by Ricardo Sawir on 9/15/2023 in #❓┊help
validate before requires confirmation
@Ricardo Sawir ever figure this out? Wanting this as well. Its a large form and not interested in using live either. As you mentioned, the confirmation model is staying up is weird and simply pretty two buttons before it even validates is just weird.
6 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@dissto yep, actually i think $livewire->mountedActionsData[0] actually will give me the data
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@dissto i can check again, but im pretty sure that looks at the form of the page and not that of the parent action
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
yes, thats my original problem that i posteda bout. $data is always an empty array
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@toeknee sorry, i lied. While I am definitely still thankful, it seems that $data never gets to that footer action. I know I am probably missing something simple and do appreciate your patience if its just going over for head for some reason.
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@toeknee I think that did it. Thanks so much for your personal help. Really appreciate it!
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@toeknee ah, didnt know about submit. Though seems to just save it and ignores the requiresconfirmation
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@toeknee sorry, not completely following you
19 replies
FFilament
Created by Mark Chaney on 1/26/2025 in #❓┊help
Secondary Modal Submit Action with RequiresConfirmation
@toeknee Doesn't appear to support requiresConfirmation()
19 replies
FFilament
Created by Mark Chaney on 1/23/2025 in #❓┊help
getSubNavigation() refresh?
oh, sidebar template has wire:ignore on it for some reason and no way to override it without obviously overriding the whole template, which affects all sidebar navs
3 replies
FFilament
Created by Mark Chaney on 1/22/2025 in #❓┊help
TableColumn with url() results in description not selectable
@awcodes that actually worked though surprisingly. i can now click on the email address
8 replies
FFilament
Created by Mark Chaney on 1/22/2025 in #❓┊help
TableColumn with url() results in description not selectable
@awcodes but its not a row action, its an actual on the column, but really just want it to apply to the name and not the description. I dont even need the email to be clickable as far as going to the email, but i do need the email to at least be selectable. Right now its not.
8 replies
FFilament
Created by Mark Chaney on 1/22/2025 in #❓┊help
TableColumn with url() results in description not selectable
i figured since the whole cell is anchored that might not work since it would be nested, but i will give it a try. Glad to see you active again
8 replies
FFilament
Created by Mark Chaney on 1/22/2025 in #❓┊help
Default Relation Manager Tab on Page Load?
seems this does the trick on the Page
public ?string $activeRelationManager = '5';
public ?string $activeRelationManager = '5';
4 replies