46 lines
884 B
PHP
46 lines
884 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 $fillable = [
|
|
'nama',
|
|
'email',
|
|
'password',
|
|
'username',
|
|
'role',
|
|
'nomor_telp',
|
|
'alamat',
|
|
'is_verified',
|
|
'verification_token',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
protected $casts = [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
'is_verified' => 'boolean',
|
|
];
|
|
|
|
public function keranjang()
|
|
{
|
|
return $this->hasMany(Keranjang::class);
|
|
}
|
|
|
|
public function transaksi()
|
|
{
|
|
return $this->hasMany(Transaksi::class);
|
|
}
|
|
}
|