Dustin
Dustin
FFilament
Created by Dustin on 11/18/2024 in #❓┊help
$tableSearch query string removes leading zero's
Update: I fixed it this way for now: public function mount(Request $request) { if ($request->has('search')) { $this->tableSearch = $request->get('search'); } }
3 replies
FFilament
Created by Dustin on 8/30/2024 in #❓┊help
Receive parameters from programmatic action
Yeah but that is a layer deeper, in the action itself:
->action(function (array $arguments) { I need it in the function addAppointmentAction, so i can change the title and fields of my form. I think that $this->mountedActionsArguments will work for now.
5 replies
FFilament
Created by Dustin on 8/30/2024 in #❓┊help
Receive parameters from programmatic action
Okay I found this (mountedActionsArguments):
public function addAppointmentAction(array $arguments = []): Action { ray($this->mountedActionsArguments); } Is that the way?
5 replies