mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 13:27:33 -04:00 
			
		
		
		
	* Client Address * Vue components for address * Fix for null objects being passed to Vue * Copy Billing Address * route key * Social auth * Pad out route bindings * Deploy hashes across models * social auth buttons
		
			
				
	
	
		
			28 lines
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use App\Utils\Traits\MakesHash;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Expense extends BaseModel
 | |
| {
 | |
|     use MakesHash;
 | |
| 
 | |
|     protected $guarded = [
 | |
|     	'id',
 | |
|     ];
 | |
| 
 | |
|     protected $appends = ['expense_id'];
 | |
| 
 | |
|     public function getRouteKeyName()
 | |
|     {
 | |
|         return 'expense_id';
 | |
|     }
 | |
| 
 | |
|     public function getExpenseIdAttribute()
 | |
|     {
 | |
|         return $this->encodePrimaryKey($this->id);
 | |
|     }
 | |
| }
 |