LaravelPackages.net
Acme Inc.
Toggle sidebar
nanokaweb/eloquent-tokenable

Allows using tokens (HashIDs) instead of id in Laravel Eloquent models.

11
0
1.2.0
About nanokaweb/eloquent-tokenable

nanokaweb/eloquent-tokenable is a Laravel package for allows using tokens (hashids) instead of id in laravel eloquent models.. It currently has 0 GitHub stars and 11 downloads on Packagist (latest version 1.2.0). Install it with composer require nanokaweb/eloquent-tokenable. Discover more Laravel packages by nanokaweb or browse all Laravel packages to compare alternatives.

Last updated

L5-eloquent-tokenable

Latest Stable Version Total Downloads Latest Unstable Version License SensioLabsInsight

Allows using tokens (HashIDs) instead of id in Laravel Eloquent models.

Setup

Add the package to the require section of your composer.json and run composer update

"kduma/eloquent-tokenable": "^1.1"

Prepare models

In your model add following lines:

use \KDuma\Eloquent\Tokenable;
protected $appends = array('token');

Optionally you can add also:

  • protected $salt = 'SALT';
    A salt for making hashes. Default is table name. This salt is added to your APP_KEY.

  • protected $length = 10;
    A salt length. Default is 10.

  • protected $alphabet = 'qwertyuiopasdfghjklzxcvbnm1234567890';
    A hash alphabet. Default is abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890

Usage

  • $model->token - Generate tokens
  • Model::whereToken($id)->first() - Find by token. (whereToken is query scope)

Hashids

A special thanks to creators of hashids, a PHP class that this package is based.

Packagist

View this package on Packagist.org: kduma/eloquent-tokenable

Comments