mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 13:41:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			283 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			283 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace Crater;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Currency extends Model
 | |
| {
 | |
|     protected $fillable = [
 | |
|         'name',
 | |
|         'code',
 | |
|         'symbol',
 | |
|         'precision',
 | |
|         'thousand_separator',
 | |
|         'decimal_separator',
 | |
|         'position'
 | |
|     ];
 | |
| }
 |