Action Modal $data
Hi, I am facing the issue of retrieving data from action. For some reason my $data is always empty on submit.. but there is data deep within request()->all() but i doubt i have to lean on that just to retrieve data right?
After some debugging I figured out if i remove multiple it appears in $data, but this ruins the point of multiple() ...
Relationships:
User->hasMany Drivers
Driver->belongsTo User
1 Reply
Figured out, i used relationship(). It is meant for many to many relationship and way to allow filament to automatiaclly do it's thing. When i remove it, all works!