PHP code example of junityco / laravel-hashids
1. Go to this page and download the library: Download junityco/laravel-hashids library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
junityco / laravel-hashids example snippets
Junity\Hashids\HashidsServiceProvider::class
'Hashids' => Junity\Hashids\Facades\Hashids::class
use Junity\Hashids\Facades\Hashids;
$id = Hashids::encode(1, 2, 3); // o2fXhV
$numbers = Hashids::decode($id); // [1, 2, 3]
bash
$ php artisan vendor:publish --provider="Junity\Hashids\HashidsServiceProvider"