18 lines
		
	
	
		
			257 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			257 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Model\helpdesk\Form;
 | |
| 
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class Forms extends Model {
 | |
| 
 | |
| 	protected $table = 'forms';
 | |
| 
 | |
| 	/**
 | |
| 	 * The attributes that are mass assignable.
 | |
| 	 *
 | |
| 	 * @var array
 | |
| 	 */
 | |
| 	protected $fillable = ['formname'];
 | |
| 
 | |
| }
 | 
