mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:07:32 -04:00 
			
		
		
		
	* Fixes for datatables * Implement a BaseModel * Working on reusable header data model * Working on adding session variables * Clean up header data * Random Data Seeder * working on searching datatables across relationships. * Working on transforming primary keys between client and server facinglogic * Updated assets
		
			
				
	
	
		
			20 lines
		
	
	
		
			389 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			389 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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]);
 | |
|     }
 | |
|     */
 | |
| }
 |