RegisterProviders

RegisterProviders class RegisterProviders (View source) Methods void bootstrap(Application $app) Bootstrap the given application.

RegisterProviders::bootstrap()

void bootstrap(Application $app) Bootstrap the given application. Parameters Application $app Return Value void

RegistersUsers

RegistersUsers trait RegistersUsers (View source) Traits RedirectsUsers

RegistersUsers::redirectPath()

string redirectPath() Get the post register / login redirect path. Return Value string

RegistersUsers::register()

Response register(Request $request) Handle a registration request for the application. Parameters Request $request Return Value Response

RegistersUsers::showRegistrationForm()

Response showRegistrationForm() Show the application registration form. Return Value Response

Registrar

Registrar interface Registrar (View source) Methods void get(string $uri, Closure|array|string $action) Register a new GET route with the router. void post(string $uri, Closure|array|string $action) Register a new POST route with the router. void put(string $uri, Closure|array|string $action) Register a new PUT route with the router. void delete(string $uri, Closure|array|string $action) Register a new DELETE route with the router. void patch(string $uri, Closure|array

Registrar

Registrar interface Registrar (View source) Methods Validator validator(array $data) Get a validator for an incoming registration request. Authenticatable create(array $data) Create a new user instance after a valid registration.

Registrar::create()

Authenticatable create(array $data) Create a new user instance after a valid registration. Parameters array $data Return Value Authenticatable

Registrar::delete()

void delete(string $uri, Closure|array|string $action) Register a new DELETE route with the router. Parameters string $uri Closure|array|string $action Return Value void