for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ElfSundae\Laravel\Hashid;
class HashidsHexDriver extends HashidsDriver
{
/**
* Encode the data.
*
* @param mixed $data
* @return string
*/
public function encode($data)
return $this->hashids->encodeHex($data);
}
* Decode the data.
public function decode($data)
return $this->hashids->decodeHex($data);