PHP 8.3.30
Preview: User.php Size: 978 B
//proc/thread-self/root/home/getspomw/itechservicellc.com/app/Models/User.php

<?php

namespace App\Models;

// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;


class User extends Authenticatable
{
    use HasFactory, Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = [
        'name',
        'email',
        'password',
        'role'
    ];

    /**
     * The attributes that should be hidden for serialization.
     *
     * @var array<int, string>
     */
    protected $hidden = [
        'password',
        'remember_token',
    ];

    /**
     * Get the attributes that should be cast.
     *
     * @return array<string, string>
     */
    protected function casts(): array
    {
        return [
            'email_verified_at' => 'datetime',
            'password' => 'hashed',
        ];
    }

}

Directory Contents

Dirs: 0 × Files: 9

Name Size Perms Modified Actions
287 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download
268 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download
297 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download
292 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download
305 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download
182 B lrw-r--r-- 2025-11-12 18:17:54
Edit Download
186 B lrw-r--r-- 2025-11-12 18:17:54
Edit Download
182 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download
978 B lrw-r--r-- 2025-10-28 20:21:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).