repat/laravel-password-reset-model

Eloquent Model for the password_resets table

0.4 2024-04-02 10:11 UTC

This package is auto-updated.

Last update: 2024-05-02 10:17:14 UTC


README

Latest Version on Packagist Total Downloads

laravel-password-reset-model contains an Eloquent model for the password_resets table as created by the default Larvel installation.

Installation

$ composer require repat/laravel-password-reset-model

Documentation

All fields are fillable ($guarded = []).

Relationship / Attributes

If you've kept the standard FQCN for Laravels User Model (\App\Model\User::class) you can use the ->user relationship or extend this model and override the user() method.

$passwordReset = \Repat\Laravel\PasswordReset::first();

// User
$passwordReset->email;
$passwordReset->user; // App\Models\User|null based on email, extend the relationship if you have a different FQCN

$passwordReset->token; // string

$passwordReset->created_at; // \Carbon\Carbon|null

License

Version

  • Version 0.4

Contact

repat

Flattr this git repo