mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			341 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			341 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace FireflyIII\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class LimitRepetition extends Model
 | |
| {
 | |
| 
 | |
|     public function budgetLimit()
 | |
|     {
 | |
|         return $this->belongsTo('FireflyIII\Models\BudgetLimit');
 | |
|     }
 | |
|     public function getDates()
 | |
|     {
 | |
|         return ['created_at', 'updated_at','startdate','enddate'];
 | |
|     }
 | |
| 
 | |
| }
 |