So quick question. Ive been following along with Jeff, but using XAMPP for my localhost server to run the test sites off of. I notice that when he does an HREF he just has to put the word with a / in front...whereas I either have to type out the entire URL or have to use the url root with the curly brackets around.
It's not a XAMPP issue. It's that if you precede the path with a "/" it will make the URL relative to the root of your project. Whereas if you don't prefix with "/", it will be relative to the current path.
If you are talking about something else, please provide an example.
In the future, you will find the url(), action() and route() helpers useful, but they are not necessary. Just get your paths and routes correct for now.