Showing 7 of 1,975 result(s)
The words helper method is similar to the limit function, but instead of limiting the number of characters returned, it limits the number of words returned. The signature for the words helper function is: words($value, $words = 100, $end = '...')
The array_pluck function is a shortcut to calling Arr::pluck . This function is declared in the global namespace.
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:
factory() The factory function is used to create Eloquent models, generally used when testing an application. The factory method can generally take one of four forms:
redirect($to = null, $status = 302, $headers = [], $secure = null) The redirect helper function is a versatile helper function. The $to parameter is defined with a default value of null . When $to is null , the redirect function by default will...
A truth value of true can be supplied as an argument for the $secure parameter to generate secure (HTTPS) URLs when redirecting: The URL that would be internally generated and redirected to in the above example would be (the actual URL will differ...