21 lines
385 B
PHP
21 lines
385 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class Admin extends Authenticatable
|
|
{
|
|
use Notifiable;
|
|
|
|
protected $table = 'admins'; protected $primaryKey = 'id';
|
|
|
|
protected $fillable = [
|
|
'nama', 'username', 'password',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
];
|
|
} |