Showing 10 of 1,085 results.

Laravel Miscellaneous Helper Function: object_get

object_get($object, $key, $default = null) The object_get allows developers to retrieve properties from a given $object using dot notation. This is useful in situations where it can not be guaranteed that a supplied object will have a given...

Laravel String Helper Function: quick_random

The quickRandom helper method is similar to random in that it generates a random string to a given $length . The quickRandom helper method does not rely on the OpenSSL extension, and generates its random strings from a pool of alpha-numeric...

Laravel Application Helper: old

old($key = null, $default = null) The old helper function is used to retrieve an old input item. It is a shortcut to calling the Illuminate\Http\Request::old instance method. It accepts a $key argument and a $default argument. They $key should be...

Laravel Array Helper Function: array_except

The except helper method will return all the key/value pairs of the $array where the keys in the original array are not in the $keys array. The signature for the except helper method is: except($array, $keys) Assuming that the $_POST super-global...

Laravel String Helper Function: randomBytes

The randomBytes helper method is used to generate a string of bytes of the given $length . The results of the randomBytes are more random than the results of the random method. randomBytes requires the OpenSSL extension extension for PHP version 5...

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

2. Basic Permissions. | License

All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The...

persistentFake($disk = null) | Laravel 5 Facades

The persistentFake method will replace the provided $disk with a local testing disk. The local disk will be stored in your application storage path under the sub-directory location framework/testing/disks/<DISK_NAME> . The persistent local...

Filter Search