- Update laravel/framework to ^13.0, tinker to ^3.0, query-builder to ^7.0 - Migrate User model to #[Fillable] and #[Hidden] attributes (Laravel 13 pattern) - Add LARAVEL_130 ruleset to Rector configuration - Add PHP 8.4 to CI test matrix - Update README badges and description for Laravel 13 BREAKING CHANGE: requires Laravel 13.x, drops Laravel 12 support
57 lines
1.2 KiB
PHP
57 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Database\Factories\UserFactory;
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Attributes\Hidden;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Support\Carbon;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $email
|
|
* @property Carbon|null $email_verified_at
|
|
* @property string $password
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*/
|
|
#[Fillable([
|
|
'name',
|
|
'email',
|
|
'password',
|
|
])]
|
|
#[Hidden([
|
|
'password',
|
|
'remember_token',
|
|
])]
|
|
final class User extends Authenticatable implements MustVerifyEmail
|
|
{
|
|
use HasApiTokens;
|
|
|
|
/** @use HasFactory<UserFactory> */
|
|
use HasFactory;
|
|
|
|
use Notifiable;
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
];
|
|
}
|
|
}
|