MIF_E31230356/app/Models/Guru.php

24 lines
359 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Guru extends Model
{
protected $table = 'guru'; // INI PENTING!
protected $primaryKey = 'nip';
public $incrementing = false;
protected $keyType = 'string';
protected $fillable = [
'nip',
'nama',
'email',
'password'
];
}