What is the best approach to generate Laravel route links inside Vue component?
So I see two approaches, either generate them in view, with Laravel's route functions (link_to_route(), etc...), and just pass them as component properties.
Or well just hard code them, inside the template (seems like the worse option of the 2).
Is there any other approach I could take? As both of these, feels kinda hacky.