Support the ongoing development of Laravel.io →
Laravel Routing Artisan
Last updated 1 year ago.

varun6578 liked this thread

1
moderator

You created a relative link that use the current page as starting point.

In your example, you are on: http://domain.tld/cars/

cars/create result in http://domain.tld/cars/cars/create
/cars/create result in http://domain.tld/cars/create
http://domain.tld/cars/create result in http://domain.tld/cars/create

Another option is to use the url helper.

            <a
                href="{{ url('cars/create')}}"
            </a>
Last updated 2 years ago.
0

Hello Varun Sharma,

You Can Use This Also

<a href="{{'cars/create'}}">Link</a>

0

@varun6578 You can simply write like this

<a href="/cars/create" </a>

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.