Categories

Thursday, April 25, 2024
#919814419350 therichposts@gmail.com
Laravel

How to encrypt laravel id in URL?

Laravel 7.2 routing with route group auth guard check with prefix

Encrypt laravel id in URL

Hello to all, welcome to therichpost.com. In this post, I will tell you, How to encrypt laravel id in URL? Like I always say that laravel is the best Mvc php framework.

Sometimes, we need to send id in url but this is not safe, if we will send direct id in url like( user/1, user/2 ) so, today we will use hashids in url to make it secure:

Very First, you need Require hashids package, with Composer you can install this, in the root directory of your project and below is command and you need to run this into your command prompt:

$ composer require hashids/hashids

 After this, you can use this with following code:

//in Controllers

use Hashids\Hashids;

$hashids = new Hashids();
echo $hashids->encode(1); //NA4ByeBWQp

//or

$id = $hashids->encode(1, 2, 3); // o2fXhV
$numbers = $hashids->decode($id); // [1, 2, 3]

//Route Bindings

$id = $hashids->encode(1);

//html
<a href="user<?php echo $id ; ?>">user</a>

 if you have any query related this post then please do ask.

 

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

2 Comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.