1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Models/BaseModel.php

20 lines
389 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use Hashids\Hashids;
use Illuminate\Database\Eloquent\Model;
class BaseModel extends Model
{
/*
public function setIdAttribute($value)
{
$hashids = new Hashids(); //decoded output is _always_ an array.
$hashed_id_array = $hashids->decode($value);
$this->attributes['id'] = strtolower($hashed_id_array[0]);
}
*/
}