Search

Showing 7 of 1,975 result(s)

/blog/2018/04/14/laravel-5-generating-urls-with-url#content-generating-secure-urls

…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...

/blog/2018/04/14/laravel-5-performing-http-redirects-with-redirect

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...

/blog/2018/04/14/laravel-5-performing-http-redirects-with-redirect#content-redirecting-to-secure-urls

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...

/blog/2018/04/14/laravel-5-redirecting-users-to-the-previous-page-with-back#content-returning-a-redirect-response-using-the-response-helper-function

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:

/blog/2018/04/21/laravel-5-facades#content-fake

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...