I need the full path to a action inside my controller, to send it via email. How can I achieve something like {{ path('_route') }} from inside my controller but the full path?
I need the full path to a action inside my controller, to send it
Share
Juan’s answer is right if you want the local path. The absolute path — which is helpful to be send through email — needs extra parameter(s):
The third parameter indicates that the absolute path is to be generated.
If you want to use this URL in your view just add the
$urlto the response array in your action and use it.