27 lines
498 B
PHP
27 lines
498 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Penilaian extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'penilaian';
|
|
protected $primaryKey = 'PenilaianId';
|
|
protected $fillable = [
|
|
'ms_sekolah_id',
|
|
'npsn',
|
|
// 'ms_form_kriteria_id',
|
|
'key',
|
|
'page_number',
|
|
'value',
|
|
'skor',
|
|
'status',
|
|
'tahun',
|
|
'created_by',
|
|
];
|
|
}
|