ReminderRepositoryInterface::deleteExpired()

void deleteExpired() Delete expired reminders. Return Value void

ReminderRepositoryInterface::delete()

void delete(string $token) Delete a reminder record by token. Parameters string $token Return Value void

ReminderRepositoryInterface::create()

string create(RemindableInterface $user) Create a new reminder record and token. Parameters RemindableInterface $user Return Value string

ReminderRepositoryInterface

ReminderRepositoryInterface interface ReminderRepositoryInterface (View source) Methods string create(RemindableInterface $user) Create a new reminder record and token. bool exists(RemindableInterface $user, string $token) Determine if a reminder record exists and is valid. void delete(string $token) Delete a reminder record by token. void deleteExpired() Delete expired reminders.

RemindableTrait::getReminderEmail()

string getReminderEmail() Get the e-mail address where password reminders are sent. Return Value string

RemindableTrait

RemindableTrait trait RemindableTrait (View source) Methods string getReminderEmail() Get the e-mail address where password reminders are sent.

RemindableInterface::getReminderEmail()

string getReminderEmail() Get the e-mail address where password reminders are sent. Return Value string

RemindableInterface

RemindableInterface interface RemindableInterface (View source) Methods string getReminderEmail() Get the e-mail address where password reminders are sent.

Release Notes

Release Notes Support Policy Laravel 5.3 Laravel 5.2 Laravel 5.1.11 Laravel 5.1.4 Laravel 5.1 Laravel 5.0 Laravel 4.2 Laravel 4.1 Support Policy For LTS releases, such as Laravel 5.1, bug fixes are provided for 2 years and security fixes are provided for 3 years. These releases provide the longest window of support and maintenance. For general releases, bug fixes are provided for 6 months and security fixes are provided for 1 year.

RelationNotFoundException::make()

static RelationNotFoundException make(mixed $model, string $relation) Create a new exception instance. Parameters mixed $model string $relation Return Value RelationNotFoundException