24 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| use Illuminate\Database\Eloquent\SoftDeletes;
 | |
| 
 | |
| class RefHistoryKegiatan extends Model
 | |
| {
 | |
|     use HasFactory; use SoftDeletes;
 | |
| 
 | |
|     protected $table = 'RefHistoryKegiatan';
 | |
| 
 | |
|     protected $dates = ['deleted_at'];
 | |
| 
 | |
|     protected $primaryKey = 'RefHistoryKegiatanId';
 | |
| 
 | |
|     protected $fillable = [
 | |
|         'NamaHistoryKegiatan',
 | |
|         'IsPublish',
 | |
|     ];
 | |
| }
 |