Laravel’s matching route pattern is domain.com/parameter/something/another_parameter/something
, which allows you to specify a method to match the Controller. So domain.com/index?parameter=somgthing
matches one method, and domain.com/index?another_parameter=something
matches another method. Is there a way to do it?
Laravel’s matching route pattern is domain.com/parameter/something/another_parameter/something
, which allows you to specify a method to match the Controller. So domain.com/index?parameter=somgthing
matches one method, and domain.com/index?another_parameter=something
matches another method. Is there a way to do it?