mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 13:47:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			143 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			143 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| class Country extends Eloquent
 | |
| {
 | |
| 	public $timestamps = false;
 | |
| 	protected $softDelete = false;	
 | |
| 	
 | |
| 	protected $visible = ['id', 'name'];
 | |
| } |