0

I use Laravel URL::Route for link pages, And I passed query string like following code, but how to add anchor tag for this?

eg: myproject.local/projects?week_ending=value#anchor

How to do that #anchor part with URL::Route? thank you

URL::Route('projects', array('week_ending'=>$week_end_day)) 

1 Answer 1

1

The most obvious way for that will be:

URL::Route('projects', array('week_ending'=>$week_end_day)) . '#anchor' 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.