|
Server : LiteSpeed System : Linux leader.herosite.pro 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : spyluwnk ( 1597) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec Directory : /home/spyluwnk/public_html/ecardsonline.in/app/ | |
|
Path: /home/spyluwnk/public_html/ecardsonline.in/app/User.php
Size: 734 B
Permissions: 0644
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', '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',
];
}