20 lines
		
	
	
		
			335 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			335 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class IzinPihakKetiga extends Model
 | |
| {
 | |
|     use HasFactory;
 | |
| 
 | |
|     protected $table = 'IzinPihakKetiga';
 | |
| 
 | |
|     protected $primaryKey = 'IzinPihakKetigaId';
 | |
| 
 | |
|     protected $fillable = [
 | |
|         'NamaIzin',
 | |
|     ];
 | |
| }
 |