87 lines
1.6 KiB
PHP
87 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class Admin extends Authenticatable
|
|
{
|
|
use HasFactory, Notifiable;
|
|
|
|
protected $guard = 'admin';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'nama_lengkap',
|
|
'email',
|
|
'password',
|
|
'nomor_telepon',
|
|
'foto_profil',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for serialization.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
];
|
|
|
|
public function jurusans()
|
|
{
|
|
return $this->hasMany(Jurusan::class);
|
|
}
|
|
|
|
public function banners()
|
|
{
|
|
return $this->hasMany(Banner::class);
|
|
}
|
|
|
|
public function fasilitas()
|
|
{
|
|
return $this->hasMany(Fasilitas::class);
|
|
}
|
|
|
|
public function galleries()
|
|
{
|
|
return $this->hasMany(Gallery::class);
|
|
}
|
|
|
|
public function pengajars()
|
|
{
|
|
return $this->hasMany(Pengajar::class);
|
|
}
|
|
|
|
public function prestasis()
|
|
{
|
|
return $this->hasMany(Prestasi::class);
|
|
}
|
|
|
|
public function pengumuman()
|
|
{
|
|
return $this->hasMany(Pengumuman::class);
|
|
}
|
|
|
|
public function strukturs()
|
|
{
|
|
return $this->hasMany(Struktur::class);
|
|
}
|
|
} |