Hi the syntax for the route is $router->add( "/admin/:controller/a/:action/:params", [ "controller" => 1, "action" => 2, "params" => 3, ] );
what if I have many parameters lets say I want a post($id,$name,$surname), can someone give me an example of route that can take this post and being reusable for a similar post but with different attributes like post($id,$accountName,$type). Thanks in advance.