TIF_NGANJUK_E41220418/app/Models/User.php

35 lines
671 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use HasFactory, Notifiable;
protected $table = 'users';
protected $primaryKey = 'id_user';
protected $fillable = [
'nama',
'username',
'email',
'password',
'no_wa',
'alamat',
'role',
];
protected $hidden = [
'password',
'remember_token',
];
public function paketFotos()
{
return $this->hasMany(PaketFoto::class, 'id_user');
}
}