Certificate manager built on Laravel 13, Livewire 4, and Flux. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
94 lines
2.6 KiB
PHP
94 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Database\Factories\UserFactory;
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Attributes\Hidden;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Str;
|
|
use Laravel\Fortify\Contracts\PasskeyUser;
|
|
use Laravel\Fortify\PasskeyAuthenticatable;
|
|
use Laravel\Fortify\TwoFactorAuthenticatable;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $email
|
|
* @property Carbon|null $email_verified_at
|
|
* @property string $password
|
|
* @property string|null $two_factor_secret
|
|
* @property string|null $two_factor_recovery_codes
|
|
* @property Carbon|null $two_factor_confirmed_at
|
|
* @property string|null $remember_token
|
|
* @property int $reminder_months_before
|
|
* @property string $ocr_provider
|
|
* @property string|null $ocr_api_key
|
|
* @property string $locale
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*/
|
|
#[Fillable(['name', 'email', 'password'])]
|
|
#[Hidden(['password', 'two_factor_secret', 'two_factor_recovery_codes', 'remember_token', 'ocr_api_key'])]
|
|
class User extends Authenticatable implements PasskeyUser
|
|
{
|
|
/** @use HasFactory<UserFactory> */
|
|
use HasFactory, Notifiable, PasskeyAuthenticatable, TwoFactorAuthenticatable;
|
|
|
|
/**
|
|
* @var array<string, mixed>
|
|
*/
|
|
protected $attributes = [
|
|
'reminder_months_before' => 1,
|
|
'ocr_provider' => 'none',
|
|
'locale' => 'en',
|
|
];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
'reminder_months_before' => 'integer',
|
|
'ocr_api_key' => 'encrypted',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<Certificate, $this>
|
|
*/
|
|
public function certificates(): HasMany
|
|
{
|
|
return $this->hasMany(Certificate::class);
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<Category, $this>
|
|
*/
|
|
public function categories(): HasMany
|
|
{
|
|
return $this->hasMany(Category::class);
|
|
}
|
|
|
|
/**
|
|
* Get the user's initials
|
|
*/
|
|
public function initials(): string
|
|
{
|
|
$initials = Str::initials($this->name, true);
|
|
|
|
return Str::length($initials) > 1
|
|
? Str::substr($initials, 0, 1).Str::substr($initials, -1)
|
|
: $initials;
|
|
}
|
|
}
|