14 lines
		
	
	
		
			319 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			319 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Model\helpdesk\Agent_panel;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Organization extends Model {
 | |
| 
 | |
| 	/* define the table name */
 | |
| 	protected $table = 'organization';
 | |
| 
 | |
| 	/* Define the fillable fields */
 | |
| 	protected $fillable = ['id','name','phone','website','address','head','internal_notes'];
 | |
| 
 | |
| }
 | 
