Level 1
You could use a session flash to flash the org_id to the first next HTTP request: https://laravel.com/docs/5.6/session
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
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.
You could use a session flash to flash the org_id to the first next HTTP request: https://laravel.com/docs/5.6/session
Please or to participate in this conversation.