RedirectResponse
class RedirectResponse extends RedirectResponse (View source)
Properties
protected Request | $request | The request instance. | |
protected Store | $session | The session store implementation. |
Methods
$this | header(string $key, string $value, bool $replace = true) Set a header on the Response. | |
RedirectResponse | with(string $key, mixed $value = null) Flash a piece of data to the session. | |
$this | withCookie(Cookie $cookie) Add a cookie to the response. | |
$this | withCookies(array $cookies) Add multiple cookies to the response. | |
$this | withInput(array $input = null) Flash an array of input to the session. | |
$this | onlyInput() Flash an array of input to the session. | |
RedirectResponse | exceptInput() Flash an array of input to the session. | |
$this | withErrors(MessageProviderInterface|array $provider, string $key = 'default') Flash a container of errors to the session. | |
MessageBag | parseErrors(MessageProviderInterface|array $provider) Parse the given errors into an appropriate value. | |
Request | getRequest() Get the request instance. | |
void | setRequest(Request $request) Set the request instance. | |
Store | getSession() Get the session store implementation. | |
void | setSession(Store $session) Set the session store implementation. | |
void | __call(string $method, array $parameters) Dynamically bind flash data in the session. |
Details
$this header(string $key, string $value, bool $replace = true)
Set a header on the Response.
RedirectResponse with(string $key, mixed $value = null)
Flash a piece of data to the session.
$this withCookie(Cookie $cookie)
Add a cookie to the response.
$this withCookies(array $cookies)
Add multiple cookies to the response.
$this withInput(array $input = null)
Flash an array of input to the session.
$this onlyInput()
Flash an array of input to the session.
RedirectResponse exceptInput()
Flash an array of input to the session.
$this withErrors(MessageProviderInterface|array $provider, string $key = 'default')
Flash a container of errors to the session.
protected MessageBag parseErrors(MessageProviderInterface|array $provider)
Parse the given errors into an appropriate value.
Request getRequest()
Get the request instance.
void setRequest(Request $request)
Set the request instance.
Store getSession()
Get the session store implementation.
void setSession(Store $session)
Set the session store implementation.
void __call(string $method, array $parameters)
Dynamically bind flash data in the session.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/4.2/Illuminate/Http/RedirectResponse.html