RedirectResponse
class RedirectResponse extends RedirectResponse (View source)
Properties
protected Request | $request | The request instance. |
|
protected Store | $session | The session store implementation. |
Methods
Set a header on the Response.
Flash a piece of data to the session.
Add a cookie to the response.
Add multiple cookies to the response.
Flash an array of input to the session.
Flash an array of input to the session.
Flash an array of input to the session.
Flash a container of errors to the session.
Parse the given errors into an appropriate value.
Get the request instance.
Get the session store implementation.
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.