PHP Class App\Http\Controllers\Front\Auth\RegisterController

Inheritance: extends app\http\controllers\Controller, use trait Illuminate\Foundation\Auth\RegistersUsers
Afficher le fichier Open project: spatie-custom/blender

Protected Properties

Свойство Type Description
$redirectTo string Where to redirect users after login / registration.

Méthodes publiques

Méthode Description
__construct ( ) Create a new controller instance.
broker ( ) : Illuminate\Contracts\Auth\PasswordBroker Get the broker to be used during password reset.
showRegistrationForm ( ) : Illuminate\Http\Response Show the application registration form.

Méthodes protégées

Méthode Description
create ( array $data ) : User Create a new user instance after a valid registration.
guard ( )
validator ( array $data ) : Illuminate\Contracts\Validation\Validator Get a validator for an incoming registration request.

Method Details

__construct() public méthode

Create a new controller instance.
public __construct ( )

broker() public méthode

Get the broker to be used during password reset.
public broker ( ) : Illuminate\Contracts\Auth\PasswordBroker
Résultat Illuminate\Contracts\Auth\PasswordBroker

create() protected méthode

Create a new user instance after a valid registration.
protected create ( array $data ) : User
$data array
Résultat App\Services\Auth\Front\User

guard() protected méthode

protected guard ( )

showRegistrationForm() public méthode

Show the application registration form.
public showRegistrationForm ( ) : Illuminate\Http\Response
Résultat Illuminate\Http\Response

validator() protected méthode

Get a validator for an incoming registration request.
protected validator ( array $data ) : Illuminate\Contracts\Validation\Validator
$data array
Résultat Illuminate\Contracts\Validation\Validator

Property Details

$redirectTo protected_oe property

Where to redirect users after login / registration.
protected string $redirectTo
Résultat string