TIF_NGANJUK_E41220949/app/Models/User.php

30 lines
513 B
PHP

<?php
namespace App\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use Notifiable;
protected $table = 'users';
protected $primaryKey = 'id_users';
public $incrementing = true;
protected $keyType = 'int';
protected $fillable = [
'name',
'username',
'password',
'role'
];
protected $hidden = [
'password',
'remember_token',
];
}