Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Sun's avatar
Level 1

How to hide id from URL

View Page

<a class="btn btn-primary" href="{{ route('user.create', ['org_id' => $org_id]) }}">
      <span data-feather="send"></span>
      Send Text Message
</a>

My URL: https://homestead.test/user/create?org_id=2

How can I make '?org_id=2' go away? If it has to be there, then I need to hash the id, which is not hard, but I prefer a simple step if possible. Thank you guys.

0 likes
3 replies
ouhare's avatar

I guess you can use php session.

Sun's avatar
Level 1

Got it! Thank you guys. I will play around with it.

Please or to participate in this conversation.