TIF_NGANJUK_E41220949/app/Models/User.php

26 lines
407 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 $fillable = [
'name',
'username',
'password',
'role'
];
protected $hidden = [
'password',
'remember_token',
];
}