1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-23 23:07:46 +01:00

44 lines
797 B
PHP
Raw Normal View History

2021-07-30 19:26:02 +02:00
<?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;
use Notifiable;
2021-07-30 19:26:02 +02:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
2021-12-14 11:55:23 +01:00
'username',
2021-07-30 19:26:02 +02:00
'email',
'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
}