48 lines
892 B
PHP
48 lines
892 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 Siswa extends Authenticatable
|
|
{
|
|
use HasApiTokens, HasFactory, Notifiable;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
|
|
protected $table = "siswa";
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'nama',
|
|
'nik',
|
|
'alamat',
|
|
'tgl_lahir',
|
|
'jenkel',
|
|
'agama',
|
|
'jenjang',
|
|
'nama_ortu',
|
|
'no_telp',
|
|
'kerja_ortu',
|
|
'level',
|
|
];
|
|
|
|
|
|
/**
|
|
* The attributes that should be hidden for serialization.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $hidden = [
|
|
'updated_at',
|
|
'created_at'
|
|
];
|
|
}
|