21 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App\Models\Master;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class MasterGroup extends Model
 | |
| {
 | |
|     use HasFactory;
 | |
|     protected $table = 'ms_group';
 | |
|     protected $primaryKey = 'MsGroupId';
 | |
|     protected $fillable = [
 | |
|         'name',
 | |
|         'alias',
 | |
|         'status',
 | |
|         'created_by',
 | |
|         'updated_by',
 | |
|     ];
 | |
| }
 |