|EmailConfirmationTokenModel newModelQuery() * @method static Builder|EmailConfirmationTokenModel newQuery() * @method static Builder|EmailConfirmationTokenModel query() * @method static Builder|EmailConfirmationTokenModel whereId($value) * @method static Builder|EmailConfirmationTokenModel whereUserId($value) * @method static Builder|EmailConfirmationTokenModel whereToken($value) * @method static Builder|EmailConfirmationTokenModel whereAvailableTo($value) * * @mixin \Eloquent */ class EmailConfirmationTokenModel extends Model { protected $table = 'email_confirmation_tokens'; public $timestamps = false; protected $fillable = [ 'user_id', 'token', 'available_to', ]; protected $casts = [ 'available_to' => 'immutable_datetime', ]; }