uthman / hashid
Simple package to hash eloquent primary key, Forked from erashdan/hashid
Requires
- php: ^7.4|^8.0
- hashids/hashids: ^3.0|^4.0
- illuminate/container: ^6.0|^7.0|^8.0|^9.0
- illuminate/contracts: ^6.0|^7.0|^8.0|^9.0
- illuminate/database: ^6.0|^7.0|^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^4.0|^5.0|^6.0|^7.0
- phpunit/phpunit: ^5.7|6.2|^7.0|^9.4
This package is not auto-updated.
Last update: 2025-03-30 08:16:58 UTC
README
This package hashes the primary key of an eloquent record.
// Get Hash ID $user = \App\User::first(); $user->hashed_id; //x7LR5oQJleJX60yPpNWV
Installation
This package can be used in Laravel 5.5 or higher.
You can install the package via composer:
composer require erashdan/hashid
Laravel's package auto discovery will automatically register the service provider for you.
Then you need to publish the configuration to your project:
php artisan vendor:publish --provider="Erashdan\Hashid\HashidServiceProvider" --tag="config"
And add the key used for the hashing in .env file
HASHID_KEY=SET_YOUR_KEY
OR
Use Laravel's own app key, change the key parameter in config/hashid.php
to Laravel's application key
'key' => env('APP_KEY'),
You can also change the length of the resulted hash from .env
file.
HASHID_LENGTH=6
Usage
Eloquent by default doesn't implement hashid, so you should use the trait provided from the package.
use Illuminate\Database\Eloquent\Model; use Erashdan\Hashid\Traits\Hashid; class Post extends Model { use Hashid;
You can then use the hashed_id attribute on the eloquent object itself.
$post = \App\Models\Post::first(); $post->hashed_id; //x7LR5oQJleJX60yPpNWV
Or find a resource by hash
$post = \App\Models\Post::FindOrFailHashed('x7LR5oQJleJX60yPpNWV'); $post->id; //1
Validation
You can validate if hashed id is existed in model or not
request()->validate([ 'post_id' => 'hashed_exists:' . \App\Post::class ]);
Testing
composer test