31 lines
566 B
PHP
Executable File
31 lines
566 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
use HasFactory, Notifiable;
|
|
|
|
protected $table = 'users';
|
|
protected $primaryKey = 'id_user';
|
|
|
|
protected $fillable = [
|
|
'nama',
|
|
'username',
|
|
'email',
|
|
'password',
|
|
'no_wa',
|
|
'alamat',
|
|
'role',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
}
|