Showing 7 of 1,975 result(s)
…URLs using the url helper function, supply an argument with the truth value of true to the $secure parameter. To generate secure URLs that do not require parameters simply supply an empty array [] as the argument for $parameters . The following...
The redirect helper function is a useful helper function and makes the task of returning HTTP redirects much easier from controller actions or from routes. The $to parameter is defined with a default value of null . When $to is null , the redirect...
A truth value of true can be supplied as an argument for the $secure parameter to generate secure (HTTPS) URLs when redirecting: return redirect('/', 302, [], true); The URL that would be internally generated and redirected to in the above example...
The signature of the back method is:
The Redirect facade resolves to an instance of "Illuminate\Routing\Redirector", which is where the back method is defined:
Like the Redirect facade, the redirect helper function will resolve an instance of "Illuminate\Routing\Redirector" from the service container and then all the back method that is defined there:
The fake method will swap the currently bound notification channel manager instance with a fake; this is incredibly useful for testing purposes. The fake notification manager instance, by default, is an instance of...