32 lines
615 B
PHP
32 lines
615 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 Mahasiswa extends Authenticatable
|
|
{
|
|
use HasFactory, Notifiable, HasApiTokens;
|
|
protected $table = 'mahasiswa';
|
|
|
|
protected $fillable = [
|
|
'id',
|
|
'nim',
|
|
'nama',
|
|
'password',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
];
|
|
|
|
// Gunakan NIP sebagai username
|
|
public function getAuthIdentifierName()
|
|
{
|
|
return 'nim';
|
|
}
|
|
}
|