14 lines
		
	
	
		
			230 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			230 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Model\helpdesk\Utility;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Form_visibility extends Model {
 | |
| 
 | |
| 	protected $table = 'form_visibility';
 | |
| 
 | |
| 	protected $fillable = [
 | |
|              'id','visibility'
 | |
| 	  ];
 | |
| 
 | |
| }
 | 
