Path : /var/www/clients/client0/web25/web/app/Models/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/app/Models/User.php |
<?php namespace App\Models; // use Illuminate\Contracts\Auth\MustVerifyEmail; use App\Events\ModelCreated; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $dispatchesEvents = [ 'created' => ModelCreated::class, ]; protected $fillable = [ 'name', 'email', 'password', 'token', 'role', 'valid', 'is_email_verified', 'avatar' ]; public function isAdmin() { return $this->role === 'admin'; } /** * The attributes that should be hidden for serialization. * * @var array<int, string> */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array<string, string> */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function comments() { return $this->hasMany(User::class); } public function posts() { return $this->hasMany(Post::class); } public function testimonial() { return $this->hasOne(Testimonial::class); } }