repat/laravel-password-reset-model
laravel-password-reset-model
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
- MIT, see LICENSE
Version
- Version 0.4
Contact
repat
- Homepage: https://repat.de
- e-mail: repat@repat.de
- Twitter: @repat123
Related Packages
repat/laravel-database-session-model
Eloquent Model for the sessions table as created by artisan session:table
11,528
1
rjacobsen/eloquent-model-generator
Auto-generates all Eloquent models from the database in a Laravel 5 project.
3,016
8
repat/laravel-job-models
Eloquent Models for the tables job and job_fails as created by artisan queue:tab...
28,851
8
