PHP Classes

File: app/Http/Controllers/Auth/ForgotPasswordController.php

Recommend this page to a friend!
  Classes of Renato Lucena   PHP Pokemon Script   app/Http/Controllers/Auth/ForgotPasswordController.php   Download  
File: app/Http/Controllers/Auth/ForgotPasswordController.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 834 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Controllers\Auth;

use
App\Http\Controllers\Controller;
use
Illuminate\Foundation\Auth\SendsPasswordResetEmails;

class
ForgotPasswordController extends Controller
{
   
/*
    |--------------------------------------------------------------------------
    | Password Reset Controller
    |--------------------------------------------------------------------------
    |
    | This controller is responsible for handling password reset emails and
    | includes a trait which assists in sending these notifications from
    | your application to your users. Feel free to explore this trait.
    |
    */

   
use SendsPasswordResetEmails;

   
/**
     * Create a new controller instance.
     *
     * @return void
     */
   
public function __construct()
    {
       
$this->middleware('guest');
    }
}