Penelaah.php 447 Bytes
Newer Older
Siti Aisah committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

namespace App\Models\Admin;

use App\Traits\Uuid;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Penelaah extends Model
{
    use HasFactory;
    use Uuid;

    public $incrementing = false;
    protected $table = 'tr_penelaah';
    protected $keyType = 'string';

Siti Aisah committed
18 19 20 21 22 23 24
    protected $fillable = [
        'id',
        'id_pengajuan',
        'nik',
        'nama',
        'nip'
    ];
Siti Aisah committed
25
}