28 lines
		
	
	
		
			529 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			529 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models\Master;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class FormKriteria extends Model
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    protected $table = 'ms_form_kriteria';
 | 
						|
    protected $primaryKey = 'MsFormKriteriaId';
 | 
						|
 | 
						|
    protected $fillable = [
 | 
						|
        'page_number',
 | 
						|
        'key',
 | 
						|
        'kategori',
 | 
						|
        'judul',
 | 
						|
        'type',
 | 
						|
        'option',
 | 
						|
        'active_lainnya',
 | 
						|
        'judul_lainnya',
 | 
						|
        'number_answer_lainnya',
 | 
						|
        'active',
 | 
						|
    ];
 | 
						|
}
 |