pelican-panel-mirror/app/Models/RecoveryToken.php
2024-06-02 01:38:30 -04:00

29 lines
543 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class RecoveryToken extends Model
{
/**
* There are no updates to this model, only inserts and deletes.
*/
public const UPDATED_AT = null;
public $timestamps = true;
public static array $validationRules = [
'token' => 'required|string',
];
protected $casts = [
'created_at' => 'immutable_datetime',
];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}