40 lines
756 B
PHP
40 lines
756 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
use HasApiTokens, HasFactory, Notifiable;
|
|
|
|
protected $primaryKey = 'id_user';
|
|
|
|
public $incrementing = true;
|
|
|
|
protected $fillable = [
|
|
'nik',
|
|
'password',
|
|
'role',
|
|
'nama_lengkap',
|
|
'email',
|
|
'no_telp',
|
|
'alamat',
|
|
'tgl_lahir',
|
|
'jenis_kelamin',
|
|
'nama_fasyankes',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
protected $casts = [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
];
|
|
} |