mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 02:57:30 -04:00 
			
		
		
		
	* Request Cancellation * Add fields to settings * Recurring invoice cancellation request * change REST endpoint for entity_id templates
		
			
				
	
	
		
			47 lines
		
	
	
		
			926 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			926 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com)
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| 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);
 | |
|     }
 | |
| 
 | |
|     public function documents()
 | |
|     {
 | |
|         return $this->morphMany(Document::class, 'documentable');
 | |
|     }
 | |
| 
 | |
|     public function assigned_user()
 | |
|     {
 | |
|         return $this->belongsTo(User::class ,'assigned_user_id', 'id');
 | |
|     }
 | |
| }
 |