Search

Showing 7 of 1,975 result(s)

/blog/2018/04/11/laravel-5-retrieving-nested-array-values-with-pluck#content-global-arraypluck-helper-function

The array_pluck function is a shortcut to calling Arr::pluck . This function is declared in the global namespace.

/blog/2018/04/11/laravel-5-sorting-arrays-with-sort#content-global-arraysort-helper-function

The array_sort function is a shortcut to calling Arr::sort . This function is declared in the global namespace.

/blog/2018/04/11/laravel-5-splitting-an-array-into-its-keys-and-values-with-divide#content-global-arraydivide-helper-function

The array_divide function is a shortcut to calling Arr::divide . This function is declared in the global namespace.

/blog/2018/04/14/laravel-5-accessing-and-manipulating-configuration-values-with-config#content-retrieving-configuration-values

The config function can even be used to retrieve configuration values, as long as the provided $key is not an array and not null . A $default value can be supplied that will be returned if the configuration $key does not exist. The following...

/blog/2018/04/14/laravel-5-generating-https-urls-with-secure_url

…t will be added as a query string by supplying an argument for the $parameters parameter. The secure_url helper function internally returns the value of a call to the url helper function.The signature of the secure_url function is:The following...