toby/app/Models/User.php
Krzysztof Rewak 2abd83526d
#1 - skeleton polishing (#12)
* #1 - skeleton polishing

* #1 - readme
2022-01-12 08:49:22 +01:00

31 lines
534 B
PHP

<?php
declare(strict_types=1);
namespace Toby\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;
protected $fillable = [
"name",
"email",
"password",
];
protected $hidden = [
"password",
"remember_token",
];
protected $casts = [
"email_verified_at" => "datetime",
];
}