W3cubDocs

/Laravel 5.4

Redirector

class Redirector (View source)

Methods

void __construct(UrlGenerator $generator)

Create a new Redirector instance.

RedirectResponse home(int $status = 302)

Create a new redirect response to the "home" route.

RedirectResponse back(int $status = 302, array $headers = array(), mixed $fallback = false)

Create a new redirect response to the previous location.

RedirectResponse refresh(int $status = 302, array $headers = array())

Create a new redirect response to the current URI.

RedirectResponse guest(string $path, int $status = 302, array $headers = array(), bool $secure = null)

Create a new redirect response, while putting the current URL in the session.

RedirectResponse intended(string $default = '/', int $status = 302, array $headers = array(), bool $secure = null)

Create a new redirect response to the previously intended location.

RedirectResponse to(string $path, int $status = 302, array $headers = array(), bool $secure = null)

Create a new redirect response to the given path.

RedirectResponse away(string $path, int $status = 302, array $headers = array())

Create a new redirect response to an external URL (no validation).

RedirectResponse secure(string $path, int $status = 302, array $headers = array())

Create a new redirect response to the given HTTPS path.

RedirectResponse route(string $route, array $parameters = array(), int $status = 302, array $headers = array())

Create a new redirect response to a named route.

RedirectResponse action(string $action, array $parameters = array(), int $status = 302, array $headers = array())

Create a new redirect response to a controller action.

UrlGenerator getUrlGenerator()

Get the URL generator instance.

void setSession(Store $session)

Set the active session store.

Details

void __construct(UrlGenerator $generator)

Create a new Redirector instance.

Parameters

UrlGenerator $generator

Return Value

void

RedirectResponse home(int $status = 302)

Create a new redirect response to the "home" route.

Parameters

int $status

Return Value

RedirectResponse

RedirectResponse back(int $status = 302, array $headers = array(), mixed $fallback = false)

Create a new redirect response to the previous location.

Parameters

int $status
array $headers
mixed $fallback

Return Value

RedirectResponse

RedirectResponse refresh(int $status = 302, array $headers = array())

Create a new redirect response to the current URI.

Parameters

int $status
array $headers

Return Value

RedirectResponse

RedirectResponse guest(string $path, int $status = 302, array $headers = array(), bool $secure = null)

Create a new redirect response, while putting the current URL in the session.

Parameters

string $path
int $status
array $headers
bool $secure

Return Value

RedirectResponse

RedirectResponse intended(string $default = '/', int $status = 302, array $headers = array(), bool $secure = null)

Create a new redirect response to the previously intended location.

Parameters

string $default
int $status
array $headers
bool $secure

Return Value

RedirectResponse

RedirectResponse to(string $path, int $status = 302, array $headers = array(), bool $secure = null)

Create a new redirect response to the given path.

Parameters

string $path
int $status
array $headers
bool $secure

Return Value

RedirectResponse

RedirectResponse away(string $path, int $status = 302, array $headers = array())

Create a new redirect response to an external URL (no validation).

Parameters

string $path
int $status
array $headers

Return Value

RedirectResponse

RedirectResponse secure(string $path, int $status = 302, array $headers = array())

Create a new redirect response to the given HTTPS path.

Parameters

string $path
int $status
array $headers

Return Value

RedirectResponse

RedirectResponse route(string $route, array $parameters = array(), int $status = 302, array $headers = array())

Create a new redirect response to a named route.

Parameters

string $route
array $parameters
int $status
array $headers

Return Value

RedirectResponse

RedirectResponse action(string $action, array $parameters = array(), int $status = 302, array $headers = array())

Create a new redirect response to a controller action.

Parameters

string $action
array $parameters
int $status
array $headers

Return Value

RedirectResponse

UrlGenerator getUrlGenerator()

Get the URL generator instance.

Return Value

UrlGenerator

void setSession(Store $session)

Set the active session store.

Parameters

Store $session

Return Value

void

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.4/Illuminate/Routing/Redirector.html