Helpers
Introduction
Laravel includes a variety of global "helper" PHP functions. Many of these functions are used by the framework itself; however, you are free to use them in your own applications if you find them convenient.
Available Methods
Arrays & Objects
Arr::accessible Arr::add Arr::collapse Arr::crossJoin Arr::divide Arr::dot Arr::except Arr::exists Arr::first Arr::flatten Arr::forget Arr::get Arr::has Arr::hasAny Arr::isAssoc Arr::isList Arr::join Arr::keyBy Arr::last Arr::map Arr::mapWithKeys Arr::only Arr::pluck Arr::prepend Arr::prependKeysWith Arr::pull Arr::query Arr::random Arr::set Arr::shuffle Arr::sort Arr::sortDesc Arr::sortRecursive Arr::sortRecursiveDesc Arr::take Arr::toCssClasses Arr::toCssStyles Arr::undot Arr::where Arr::whereNotNull Arr::wrap data_fill data_get data_set data_forget head last
Numbers
Number::abbreviate Number::clamp Number::currency Number::fileSize Number::forHumans Number::format Number::ordinal Number::percentage Number::spell Number::useLocale Number::withLocale
Paths
URLs
Miscellaneous
abort abort_if abort_unless app auth back bcrypt blank broadcast cache class_uses_recursive collect config cookie csrf_field csrf_token decrypt dd dispatch dispatch_sync dump encrypt env event fake filled info logger method_field now old optional policy redirect report report_if report_unless request rescue resolve response retry session tap throw_if throw_unless today trait_uses_recursive transform validator value view with
Arrays & Objects
Arr::accessible()
The Arr::accessible
method determines if the given value is array accessible:
1use Illuminate\Support\Arr;2use Illuminate\Support\Collection;34$isAccessible = Arr::accessible(['a' => 1, 'b' => 2]);56// true78$isAccessible = Arr::accessible(new Collection);910// true1112$isAccessible = Arr::accessible('abc');1314// false1516$isAccessible = Arr::accessible(new stdClass);1718// false
1use Illuminate\Support\Arr;2use Illuminate\Support\Collection;34$isAccessible = Arr::accessible(['a' => 1, 'b' => 2]);56// true78$isAccessible = Arr::accessible(new Collection);910// true1112$isAccessible = Arr::accessible('abc');1314// false1516$isAccessible = Arr::accessible(new stdClass);1718// false
Arr::add()
The Arr::add
method adds a given key / value pair to an array if the given key doesn't already exist in the array or is set to null
:
1use Illuminate\Support\Arr;23$array = Arr::add(['name' => 'Desk'], 'price', 100);45// ['name' => 'Desk', 'price' => 100]67$array = Arr::add(['name' => 'Desk', 'price' => null], 'price', 100);89// ['name' => 'Desk', 'price' => 100]
1use Illuminate\Support\Arr;23$array = Arr::add(['name' => 'Desk'], 'price', 100);45// ['name' => 'Desk', 'price' => 100]67$array = Arr::add(['name' => 'Desk', 'price' => null], 'price', 100);89// ['name' => 'Desk', 'price' => 100]
Arr::collapse()
The Arr::collapse
method collapses an array of arrays into a single array:
1use Illuminate\Support\Arr;23$array = Arr::collapse([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);45// [1, 2, 3, 4, 5, 6, 7, 8, 9]
1use Illuminate\Support\Arr;23$array = Arr::collapse([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);45// [1, 2, 3, 4, 5, 6, 7, 8, 9]
Arr::crossJoin()
The Arr::crossJoin
method cross joins the given arrays, returning a Cartesian product with all possible permutations:
1use Illuminate\Support\Arr;23$matrix = Arr::crossJoin([1, 2], ['a', 'b']);45/*6 [7 [1, 'a'],8 [1, 'b'],9 [2, 'a'],10 [2, 'b'],11 ]12*/1314$matrix = Arr::crossJoin([1, 2], ['a', 'b'], ['I', 'II']);1516/*17 [18 [1, 'a', 'I'],19 [1, 'a', 'II'],20 [1, 'b', 'I'],21 [1, 'b', 'II'],22 [2, 'a', 'I'],23 [2, 'a', 'II'],24 [2, 'b', 'I'],25 [2, 'b', 'II'],26 ]27*/
1use Illuminate\Support\Arr;23$matrix = Arr::crossJoin([1, 2], ['a', 'b']);45/*6 [7 [1, 'a'],8 [1, 'b'],9 [2, 'a'],10 [2, 'b'],11 ]12*/1314$matrix = Arr::crossJoin([1, 2], ['a', 'b'], ['I', 'II']);1516/*17 [18 [1, 'a', 'I'],19 [1, 'a', 'II'],20 [1, 'b', 'I'],21 [1, 'b', 'II'],22 [2, 'a', 'I'],23 [2, 'a', 'II'],24 [2, 'b', 'I'],25 [2, 'b', 'II'],26 ]27*/
Arr::divide()
The Arr::divide
method returns two arrays: one containing the keys and the other containing the values of the given array:
1use Illuminate\Support\Arr;23[$keys, $values] = Arr::divide(['name' => 'Desk']);45// $keys: ['name']67// $values: ['Desk']
1use Illuminate\Support\Arr;23[$keys, $values] = Arr::divide(['name' => 'Desk']);45// $keys: ['name']67// $values: ['Desk']
Arr::dot()
The Arr::dot
method flattens a multi-dimensional array into a single level array that uses "dot" notation to indicate depth:
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45$flattened = Arr::dot($array);67// ['products.desk.price' => 100]
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45$flattened = Arr::dot($array);67// ['products.desk.price' => 100]
Arr::except()
The Arr::except
method removes the given key / value pairs from an array:
1use Illuminate\Support\Arr;23$array = ['name' => 'Desk', 'price' => 100];45$filtered = Arr::except($array, ['price']);67// ['name' => 'Desk']
1use Illuminate\Support\Arr;23$array = ['name' => 'Desk', 'price' => 100];45$filtered = Arr::except($array, ['price']);67// ['name' => 'Desk']
Arr::exists()
The Arr::exists
method checks that the given key exists in the provided array:
1use Illuminate\Support\Arr;23$array = ['name' => 'John Doe', 'age' => 17];45$exists = Arr::exists($array, 'name');67// true89$exists = Arr::exists($array, 'salary');1011// false
1use Illuminate\Support\Arr;23$array = ['name' => 'John Doe', 'age' => 17];45$exists = Arr::exists($array, 'name');67// true89$exists = Arr::exists($array, 'salary');1011// false
Arr::first()
The Arr::first
method returns the first element of an array passing a given truth test:
1use Illuminate\Support\Arr;23$array = [100, 200, 300];45$first = Arr::first($array, function (int $value, int $key) {6 return $value >= 150;7});89// 200
1use Illuminate\Support\Arr;23$array = [100, 200, 300];45$first = Arr::first($array, function (int $value, int $key) {6 return $value >= 150;7});89// 200
A default value may also be passed as the third parameter to the method. This value will be returned if no value passes the truth test:
1use Illuminate\Support\Arr;23$first = Arr::first($array, $callback, $default);
1use Illuminate\Support\Arr;23$first = Arr::first($array, $callback, $default);
Arr::flatten()
The Arr::flatten
method flattens a multi-dimensional array into a single level array:
1use Illuminate\Support\Arr;23$array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']];45$flattened = Arr::flatten($array);67// ['Joe', 'PHP', 'Ruby']
1use Illuminate\Support\Arr;23$array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']];45$flattened = Arr::flatten($array);67// ['Joe', 'PHP', 'Ruby']
Arr::forget()
The Arr::forget
method removes a given key / value pair from a deeply nested array using "dot" notation:
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45Arr::forget($array, 'products.desk');67// ['products' => []]
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45Arr::forget($array, 'products.desk');67// ['products' => []]
Arr::get()
The Arr::get
method retrieves a value from a deeply nested array using "dot" notation:
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45$price = Arr::get($array, 'products.desk.price');67// 100
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45$price = Arr::get($array, 'products.desk.price');67// 100
The Arr::get
method also accepts a default value, which will be returned if the specified key is not present in the array:
1use Illuminate\Support\Arr;23$discount = Arr::get($array, 'products.desk.discount', 0);45// 0
1use Illuminate\Support\Arr;23$discount = Arr::get($array, 'products.desk.discount', 0);45// 0
Arr::has()
The Arr::has
method checks whether a given item or items exists in an array using "dot" notation:
1use Illuminate\Support\Arr;23$array = ['product' => ['name' => 'Desk', 'price' => 100]];45$contains = Arr::has($array, 'product.name');67// true89$contains = Arr::has($array, ['product.price', 'product.discount']);1011// false
1use Illuminate\Support\Arr;23$array = ['product' => ['name' => 'Desk', 'price' => 100]];45$contains = Arr::has($array, 'product.name');67// true89$contains = Arr::has($array, ['product.price', 'product.discount']);1011// false
Arr::hasAny()
The Arr::hasAny
method checks whether any item in a given set exists in an array using "dot" notation:
1use Illuminate\Support\Arr;23$array = ['product' => ['name' => 'Desk', 'price' => 100]];45$contains = Arr::hasAny($array, 'product.name');67// true89$contains = Arr::hasAny($array, ['product.name', 'product.discount']);1011// true1213$contains = Arr::hasAny($array, ['category', 'product.discount']);1415// false
1use Illuminate\Support\Arr;23$array = ['product' => ['name' => 'Desk', 'price' => 100]];45$contains = Arr::hasAny($array, 'product.name');67// true89$contains = Arr::hasAny($array, ['product.name', 'product.discount']);1011// true1213$contains = Arr::hasAny($array, ['category', 'product.discount']);1415// false
Arr::isAssoc()
The Arr::isAssoc
method returns true
if the given array is an associative array. An array is considered "associative" if it doesn't have sequential numerical keys beginning with zero:
1use Illuminate\Support\Arr;23$isAssoc = Arr::isAssoc(['product' => ['name' => 'Desk', 'price' => 100]]);45// true67$isAssoc = Arr::isAssoc([1, 2, 3]);89// false
1use Illuminate\Support\Arr;23$isAssoc = Arr::isAssoc(['product' => ['name' => 'Desk', 'price' => 100]]);45// true67$isAssoc = Arr::isAssoc([1, 2, 3]);89// false
Arr::isList()
The Arr::isList
method returns true
if the given array's keys are sequential integers beginning from zero:
1use Illuminate\Support\Arr;23$isList = Arr::isList(['foo', 'bar', 'baz']);45// true67$isList = Arr::isList(['product' => ['name' => 'Desk', 'price' => 100]]);89// false
1use Illuminate\Support\Arr;23$isList = Arr::isList(['foo', 'bar', 'baz']);45// true67$isList = Arr::isList(['product' => ['name' => 'Desk', 'price' => 100]]);89// false
Arr::join()
The Arr::join
method joins array elements with a string. Using this method's second argument, you may also specify the joining string for the final element of the array:
1use Illuminate\Support\Arr;23$array = ['Tailwind', 'Alpine', 'Laravel', 'Livewire'];45$joined = Arr::join($array, ', ');67// Tailwind, Alpine, Laravel, Livewire89$joined = Arr::join($array, ', ', ' and ');1011// Tailwind, Alpine, Laravel and Livewire
1use Illuminate\Support\Arr;23$array = ['Tailwind', 'Alpine', 'Laravel', 'Livewire'];45$joined = Arr::join($array, ', ');67// Tailwind, Alpine, Laravel, Livewire89$joined = Arr::join($array, ', ', ' and ');1011// Tailwind, Alpine, Laravel and Livewire
Arr::keyBy()
The Arr::keyBy
method keys the array by the given key. If multiple items have the same key, only the last one will appear in the new array:
1use Illuminate\Support\Arr;23$array = [4 ['product_id' => 'prod-100', 'name' => 'Desk'],5 ['product_id' => 'prod-200', 'name' => 'Chair'],6];78$keyed = Arr::keyBy($array, 'product_id');910/*11 [12 'prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],13 'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],14 ]15*/
1use Illuminate\Support\Arr;23$array = [4 ['product_id' => 'prod-100', 'name' => 'Desk'],5 ['product_id' => 'prod-200', 'name' => 'Chair'],6];78$keyed = Arr::keyBy($array, 'product_id');910/*11 [12 'prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],13 'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],14 ]15*/
Arr::last()
The Arr::last
method returns the last element of an array passing a given truth test:
1use Illuminate\Support\Arr;23$array = [100, 200, 300, 110];45$last = Arr::last($array, function (int $value, int $key) {6 return $value >= 150;7});89// 300
1use Illuminate\Support\Arr;23$array = [100, 200, 300, 110];45$last = Arr::last($array, function (int $value, int $key) {6 return $value >= 150;7});89// 300
A default value may be passed as the third argument to the method. This value will be returned if no value passes the truth test:
1use Illuminate\Support\Arr;23$last = Arr::last($array, $callback, $default);
1use Illuminate\Support\Arr;23$last = Arr::last($array, $callback, $default);
Arr::map()
The Arr::map
method iterates through the array and passes each value and key to the given callback. The array value is replaced by the value returned by the callback:
1use Illuminate\Support\Arr;23$array = ['first' => 'james', 'last' => 'kirk'];45$mapped = Arr::map($array, function (string $value, string $key) {6 return ucfirst($value);7});89// ['first' => 'James', 'last' => 'Kirk']
1use Illuminate\Support\Arr;23$array = ['first' => 'james', 'last' => 'kirk'];45$mapped = Arr::map($array, function (string $value, string $key) {6 return ucfirst($value);7});89// ['first' => 'James', 'last' => 'Kirk']
Arr::mapWithKeys()
The Arr::mapWithKeys
method iterates through the array and passes each value to the given callback. The callback should return an associative array containing a single key / value pair:
1use Illuminate\Support\Arr;23$array = [4 [5 'name' => 'John',6 'department' => 'Sales',8 ],9 [10 'name' => 'Jane',11 'department' => 'Marketing',13 ]14];1516$mapped = Arr::mapWithKeys($array, function (array $item, int $key) {17 return [$item['email'] => $item['name']];18});1920/*21 [22 '[email protected]' => 'John',23 '[email protected]' => 'Jane',24 ]25*/
1use Illuminate\Support\Arr;23$array = [4 [5 'name' => 'John',6 'department' => 'Sales',8 ],9 [10 'name' => 'Jane',11 'department' => 'Marketing',13 ]14];1516$mapped = Arr::mapWithKeys($array, function (array $item, int $key) {17 return [$item['email'] => $item['name']];18});1920/*21 [22 '[email protected]' => 'John',23 '[email protected]' => 'Jane',24 ]25*/
Arr::only()
The Arr::only
method returns only the specified key / value pairs from the given array:
1use Illuminate\Support\Arr;23$array = ['name' => 'Desk', 'price' => 100, 'orders' => 10];45$slice = Arr::only($array, ['name', 'price']);67// ['name' => 'Desk', 'price' => 100]
1use Illuminate\Support\Arr;23$array = ['name' => 'Desk', 'price' => 100, 'orders' => 10];45$slice = Arr::only($array, ['name', 'price']);67// ['name' => 'Desk', 'price' => 100]
Arr::pluck()
The Arr::pluck
method retrieves all of the values for a given key from an array:
1use Illuminate\Support\Arr;23$array = [4 ['developer' => ['id' => 1, 'name' => 'Taylor']],5 ['developer' => ['id' => 2, 'name' => 'Abigail']],6];78$names = Arr::pluck($array, 'developer.name');910// ['Taylor', 'Abigail']
1use Illuminate\Support\Arr;23$array = [4 ['developer' => ['id' => 1, 'name' => 'Taylor']],5 ['developer' => ['id' => 2, 'name' => 'Abigail']],6];78$names = Arr::pluck($array, 'developer.name');910// ['Taylor', 'Abigail']
You may also specify how you wish the resulting list to be keyed:
1use Illuminate\Support\Arr;23$names = Arr::pluck($array, 'developer.name', 'developer.id');45// [1 => 'Taylor', 2 => 'Abigail']
1use Illuminate\Support\Arr;23$names = Arr::pluck($array, 'developer.name', 'developer.id');45// [1 => 'Taylor', 2 => 'Abigail']
Arr::prepend()
The Arr::prepend
method will push an item onto the beginning of an array:
1use Illuminate\Support\Arr;23$array = ['one', 'two', 'three', 'four'];45$array = Arr::prepend($array, 'zero');67// ['zero', 'one', 'two', 'three', 'four']
1use Illuminate\Support\Arr;23$array = ['one', 'two', 'three', 'four'];45$array = Arr::prepend($array, 'zero');67// ['zero', 'one', 'two', 'three', 'four']
If needed, you may specify the key that should be used for the value:
1use Illuminate\Support\Arr;23$array = ['price' => 100];45$array = Arr::prepend($array, 'Desk', 'name');67// ['name' => 'Desk', 'price' => 100]
1use Illuminate\Support\Arr;23$array = ['price' => 100];45$array = Arr::prepend($array, 'Desk', 'name');67// ['name' => 'Desk', 'price' => 100]
Arr::prependKeysWith()
The Arr::prependKeysWith
prepends all key names of an associative array with the given prefix:
1use Illuminate\Support\Arr;23$array = [4 'name' => 'Desk',5 'price' => 100,6];78$keyed = Arr::prependKeysWith($array, 'product.');910/*11 [12 'product.name' => 'Desk',13 'product.price' => 100,14 ]15*/
1use Illuminate\Support\Arr;23$array = [4 'name' => 'Desk',5 'price' => 100,6];78$keyed = Arr::prependKeysWith($array, 'product.');910/*11 [12 'product.name' => 'Desk',13 'product.price' => 100,14 ]15*/
Arr::pull()
The Arr::pull
method returns and removes a key / value pair from an array:
1use Illuminate\Support\Arr;23$array = ['name' => 'Desk', 'price' => 100];45$name = Arr::pull($array, 'name');67// $name: Desk89// $array: ['price' => 100]
1use Illuminate\Support\Arr;23$array = ['name' => 'Desk', 'price' => 100];45$name = Arr::pull($array, 'name');67// $name: Desk89// $array: ['price' => 100]
A default value may be passed as the third argument to the method. This value will be returned if the key doesn't exist:
1use Illuminate\Support\Arr;23$value = Arr::pull($array, $key, $default);
1use Illuminate\Support\Arr;23$value = Arr::pull($array, $key, $default);
Arr::query()
The Arr::query
method converts the array into a query string:
1use Illuminate\Support\Arr;23$array = [4 'name' => 'Taylor',5 'order' => [6 'column' => 'created_at',7 'direction' => 'desc'8 ]9];1011Arr::query($array);1213// name=Taylor&order[column]=created_at&order[direction]=desc
1use Illuminate\Support\Arr;23$array = [4 'name' => 'Taylor',5 'order' => [6 'column' => 'created_at',7 'direction' => 'desc'8 ]9];1011Arr::query($array);1213// name=Taylor&order[column]=created_at&order[direction]=desc
Arr::random()
The Arr::random
method returns a random value from an array:
1use Illuminate\Support\Arr;23$array = [1, 2, 3, 4, 5];45$random = Arr::random($array);67// 4 - (retrieved randomly)
1use Illuminate\Support\Arr;23$array = [1, 2, 3, 4, 5];45$random = Arr::random($array);67// 4 - (retrieved randomly)
You may also specify the number of items to return as an optional second argument. Note that providing this argument will return an array even if only one item is desired:
1use Illuminate\Support\Arr;23$items = Arr::random($array, 2);45// [2, 5] - (retrieved randomly)
1use Illuminate\Support\Arr;23$items = Arr::random($array, 2);45// [2, 5] - (retrieved randomly)
Arr::set()
The Arr::set
method sets a value within a deeply nested array using "dot" notation:
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45Arr::set($array, 'products.desk.price', 200);67// ['products' => ['desk' => ['price' => 200]]]
1use Illuminate\Support\Arr;23$array = ['products' => ['desk' => ['price' => 100]]];45Arr::set($array, 'products.desk.price', 200);67// ['products' => ['desk' => ['price' => 200]]]
Arr::shuffle()
The Arr::shuffle
method randomly shuffles the items in the array:
1use Illuminate\Support\Arr;23$array = Arr::shuffle([1, 2, 3, 4, 5]);45// [3, 2, 5, 1, 4] - (generated randomly)
1use Illuminate\Support\Arr;23$array = Arr::shuffle([1, 2, 3, 4, 5]);45// [3, 2, 5, 1, 4] - (generated randomly)
Arr::sort()
The Arr::sort
method sorts an array by its values:
1use Illuminate\Support\Arr;23$array = ['Desk', 'Table', 'Chair'];45$sorted = Arr::sort($array);67// ['Chair', 'Desk', 'Table']
1use Illuminate\Support\Arr;23$array = ['Desk', 'Table', 'Chair'];45$sorted = Arr::sort($array);67// ['Chair', 'Desk', 'Table']
You may also sort the array by the results of a given closure:
1use Illuminate\Support\Arr;23$array = [4 ['name' => 'Desk'],5 ['name' => 'Table'],6 ['name' => 'Chair'],7];89$sorted = array_values(Arr::sort($array, function (array $value) {10 return $value['name'];11}));1213/*14 [15 ['name' => 'Chair'],16 ['name' => 'Desk'],17 ['name' => 'Table'],18 ]19*/
1use Illuminate\Support\Arr;23$array = [4 ['name' => 'Desk'],5 ['name' => 'Table'],6 ['name' => 'Chair'],7];89$sorted = array_values(Arr::sort($array, function (array $value) {10 return $value['name'];11}));1213/*14 [15 ['name' => 'Chair'],16 ['name' => 'Desk'],17 ['name' => 'Table'],18 ]19*/
Arr::sortDesc()
The Arr::sortDesc
method sorts an array in descending order by its values:
1use Illuminate\Support\Arr;23$array = ['Desk', 'Table', 'Chair'];45$sorted = Arr::sortDesc($array);67// ['Table', 'Desk', 'Chair']
1use Illuminate\Support\Arr;23$array = ['Desk', 'Table', 'Chair'];45$sorted = Arr::sortDesc($array);67// ['Table', 'Desk', 'Chair']
You may also sort the array by the results of a given closure:
1use Illuminate\Support\Arr;23$array = [4 ['name' => 'Desk'],5 ['name' => 'Table'],6 ['name' => 'Chair'],7];89$sorted = array_values(Arr::sortDesc($array, function (array $value) {10 return $value['name'];11}));1213/*14 [15 ['name' => 'Table'],16 ['name' => 'Desk'],17 ['name' => 'Chair'],18 ]19*/
1use Illuminate\Support\Arr;23$array = [4 ['name' => 'Desk'],5 ['name' => 'Table'],6 ['name' => 'Chair'],7];89$sorted = array_values(Arr::sortDesc($array, function (array $value) {10 return $value['name'];11}));1213/*14 [15 ['name' => 'Table'],16 ['name' => 'Desk'],17 ['name' => 'Chair'],18 ]19*/
Arr::sortRecursive()
The Arr::sortRecursive
method recursively sorts an array using the sort
function for numerically indexed sub-arrays and the ksort
function for associative sub-arrays:
1use Illuminate\Support\Arr;23$array = [4 ['Roman', 'Taylor', 'Li'],5 ['PHP', 'Ruby', 'JavaScript'],6 ['one' => 1, 'two' => 2, 'three' => 3],7];89$sorted = Arr::sortRecursive($array);1011/*12 [13 ['JavaScript', 'PHP', 'Ruby'],14 ['one' => 1, 'three' => 3, 'two' => 2],15 ['Li', 'Roman', 'Taylor'],16 ]17*/
1use Illuminate\Support\Arr;23$array = [4 ['Roman', 'Taylor', 'Li'],5 ['PHP', 'Ruby', 'JavaScript'],6 ['one' => 1, 'two' => 2, 'three' => 3],7];89$sorted = Arr::sortRecursive($array);1011/*12 [13 ['JavaScript', 'PHP', 'Ruby'],14 ['one' => 1, 'three' => 3, 'two' => 2],15 ['Li', 'Roman', 'Taylor'],16 ]17*/
If you would like the results sorted in descending order, you may use the Arr::sortRecursiveDesc
method.
1$sorted = Arr::sortRecursiveDesc($array);
1$sorted = Arr::sortRecursiveDesc($array);
Arr::take()
The Arr::take
method returns a new array with the specified number of items:
1use Illuminate\Support\Arr;23$array = [0, 1, 2, 3, 4, 5];45$chunk = Arr::take($array, 3);67// [0, 1, 2]
1use Illuminate\Support\Arr;23$array = [0, 1, 2, 3, 4, 5];45$chunk = Arr::take($array, 3);67// [0, 1, 2]
You may also pass a negative integer to take the specified number of items from the end of the array:
1$array = [0, 1, 2, 3, 4, 5];23$chunk = Arr::take($array, -2);45// [4, 5]
1$array = [0, 1, 2, 3, 4, 5];23$chunk = Arr::take($array, -2);45// [4, 5]
Arr::toCssClasses()
The Arr::toCssClasses
method conditionally compiles a CSS class string. The method accepts an array of classes where the array key contains the class or classes you wish to add, while the value is a boolean expression. If the array element has a numeric key, it will always be included in the rendered class list:
1use Illuminate\Support\Arr;23$isActive = false;4$hasError = true;56$array = ['p-4', 'font-bold' => $isActive, 'bg-red' => $hasError];78$classes = Arr::toCssClasses($array);910/*11 'p-4 bg-red'12*/
1use Illuminate\Support\Arr;23$isActive = false;4$hasError = true;56$array = ['p-4', 'font-bold' => $isActive, 'bg-red' => $hasError];78$classes = Arr::toCssClasses($array);910/*11 'p-4 bg-red'12*/
Arr::toCssStyles()
The Arr::toCssStyles
conditionally compiles a CSS style string. The method accepts an array of classes where the array key contains the class or classes you wish to add, while the value is a boolean expression. If the array element has a numeric key, it will always be included in the rendered class list:
1use Illuminate\Support\Arr;23$hasColor = true;45$array = ['background-color: blue', 'color: blue' => $hasColor];67$classes = Arr::toCssStyles($array);89/*10 'background-color: blue; color: blue;'11*/
1use Illuminate\Support\Arr;23$hasColor = true;45$array = ['background-color: blue', 'color: blue' => $hasColor];67$classes = Arr::toCssStyles($array);89/*10 'background-color: blue; color: blue;'11*/
This method powers Laravel's functionality allowing merging classes with a Blade component's attribute bag as well as the @class
Blade directive.
Arr::undot()
The Arr::undot
method expands a single-dimensional array that uses "dot" notation into a multi-dimensional array:
1use Illuminate\Support\Arr;23$array = [4 'user.name' => 'Kevin Malone',5 'user.occupation' => 'Accountant',6];78$array = Arr::undot($array);910// ['user' => ['name' => 'Kevin Malone', 'occupation' => 'Accountant']]
1use Illuminate\Support\Arr;23$array = [4 'user.name' => 'Kevin Malone',5 'user.occupation' => 'Accountant',6];78$array = Arr::undot($array);910// ['user' => ['name' => 'Kevin Malone', 'occupation' => 'Accountant']]
Arr::where()
The Arr::where
method filters an array using the given closure:
1use Illuminate\Support\Arr;23$array = [100, '200', 300, '400', 500];45$filtered = Arr::where($array, function (string|int $value, int $key) {6 return is_string($value);7});89// [1 => '200', 3 => '400']
1use Illuminate\Support\Arr;23$array = [100, '200', 300, '400', 500];45$filtered = Arr::where($array, function (string|int $value, int $key) {6 return is_string($value);7});89// [1 => '200', 3 => '400']
Arr::whereNotNull()
The Arr::whereNotNull
method removes all null
values from the given array:
1use Illuminate\Support\Arr;23$array = [0, null];45$filtered = Arr::whereNotNull($array);67// [0 => 0]
1use Illuminate\Support\Arr;23$array = [0, null];45$filtered = Arr::whereNotNull($array);67// [0 => 0]
Arr::wrap()
The Arr::wrap
method wraps the given value in an array. If the given value is already an array it will be returned without modification:
1use Illuminate\Support\Arr;23$string = 'Laravel';45$array = Arr::wrap($string);67// ['Laravel']
1use Illuminate\Support\Arr;23$string = 'Laravel';45$array = Arr::wrap($string);67// ['Laravel']
If the given value is null
, an empty array will be returned:
1use Illuminate\Support\Arr;23$array = Arr::wrap(null);45// []
1use Illuminate\Support\Arr;23$array = Arr::wrap(null);45// []
data_fill()
The data_fill
function sets a missing value within a nested array or object using "dot" notation:
1$data = ['products' => ['desk' => ['price' => 100]]];23data_fill($data, 'products.desk.price', 200);45// ['products' => ['desk' => ['price' => 100]]]67data_fill($data, 'products.desk.discount', 10);89// ['products' => ['desk' => ['price' => 100, 'discount' => 10]]]
1$data = ['products' => ['desk' => ['price' => 100]]];23data_fill($data, 'products.desk.price', 200);45// ['products' => ['desk' => ['price' => 100]]]67data_fill($data, 'products.desk.discount', 10);89// ['products' => ['desk' => ['price' => 100, 'discount' => 10]]]
This function also accepts asterisks as wildcards and will fill the target accordingly:
1$data = [2 'products' => [3 ['name' => 'Desk 1', 'price' => 100],4 ['name' => 'Desk 2'],5 ],6];78data_fill($data, 'products.*.price', 200);910/*11 [12 'products' => [13 ['name' => 'Desk 1', 'price' => 100],14 ['name' => 'Desk 2', 'price' => 200],15 ],16 ]17*/
1$data = [2 'products' => [3 ['name' => 'Desk 1', 'price' => 100],4 ['name' => 'Desk 2'],5 ],6];78data_fill($data, 'products.*.price', 200);910/*11 [12 'products' => [13 ['name' => 'Desk 1', 'price' => 100],14 ['name' => 'Desk 2', 'price' => 200],15 ],16 ]17*/
data_get()
The data_get
function retrieves a value from a nested array or object using "dot" notation:
1$data = ['products' => ['desk' => ['price' => 100]]];23$price = data_get($data, 'products.desk.price');45// 100
1$data = ['products' => ['desk' => ['price' => 100]]];23$price = data_get($data, 'products.desk.price');45// 100
The data_get
function also accepts a default value, which will be returned if the specified key is not found:
1$discount = data_get($data, 'products.desk.discount', 0);23// 0
1$discount = data_get($data, 'products.desk.discount', 0);23// 0
The function also accepts wildcards using asterisks, which may target any key of the array or object:
1$data = [2 'product-one' => ['name' => 'Desk 1', 'price' => 100],3 'product-two' => ['name' => 'Desk 2', 'price' => 150],4];56data_get($data, '*.name');78// ['Desk 1', 'Desk 2'];
1$data = [2 'product-one' => ['name' => 'Desk 1', 'price' => 100],3 'product-two' => ['name' => 'Desk 2', 'price' => 150],4];56data_get($data, '*.name');78// ['Desk 1', 'Desk 2'];
data_set()
The data_set
function sets a value within a nested array or object using "dot" notation:
1$data = ['products' => ['desk' => ['price' => 100]]];23data_set($data, 'products.desk.price', 200);45// ['products' => ['desk' => ['price' => 200]]]
1$data = ['products' => ['desk' => ['price' => 100]]];23data_set($data, 'products.desk.price', 200);45// ['products' => ['desk' => ['price' => 200]]]
This function also accepts wildcards using asterisks and will set values on the target accordingly:
1$data = [2 'products' => [3 ['name' => 'Desk 1', 'price' => 100],4 ['name' => 'Desk 2', 'price' => 150],5 ],6];78data_set($data, 'products.*.price', 200);910/*11 [12 'products' => [13 ['name' => 'Desk 1', 'price' => 200],14 ['name' => 'Desk 2', 'price' => 200],15 ],16 ]17*/
1$data = [2 'products' => [3 ['name' => 'Desk 1', 'price' => 100],4 ['name' => 'Desk 2', 'price' => 150],5 ],6];78data_set($data, 'products.*.price', 200);910/*11 [12 'products' => [13 ['name' => 'Desk 1', 'price' => 200],14 ['name' => 'Desk 2', 'price' => 200],15 ],16 ]17*/
By default, any existing values are overwritten. If you wish to only set a value if it doesn't exist, you may pass false
as the fourth argument to the function:
1$data = ['products' => ['desk' => ['price' => 100]]];23data_set($data, 'products.desk.price', 200, overwrite: false);45// ['products' => ['desk' => ['price' => 100]]]
1$data = ['products' => ['desk' => ['price' => 100]]];23data_set($data, 'products.desk.price', 200, overwrite: false);45// ['products' => ['desk' => ['price' => 100]]]
data_forget()
The data_forget
function removes a value within a nested array or object using "dot" notation:
1$data = ['products' => ['desk' => ['price' => 100]]];23data_forget($data, 'products.desk.price');45// ['products' => ['desk' => []]]
1$data = ['products' => ['desk' => ['price' => 100]]];23data_forget($data, 'products.desk.price');45// ['products' => ['desk' => []]]
This function also accepts wildcards using asterisks and will remove values on the target accordingly:
1$data = [2 'products' => [3 ['name' => 'Desk 1', 'price' => 100],4 ['name' => 'Desk 2', 'price' => 150],5 ],6];78data_forget($data, 'products.*.price');910/*11 [12 'products' => [13 ['name' => 'Desk 1'],14 ['name' => 'Desk 2'],15 ],16 ]17*/
1$data = [2 'products' => [3 ['name' => 'Desk 1', 'price' => 100],4 ['name' => 'Desk 2', 'price' => 150],5 ],6];78data_forget($data, 'products.*.price');910/*11 [12 'products' => [13 ['name' => 'Desk 1'],14 ['name' => 'Desk 2'],15 ],16 ]17*/
head()
The head
function returns the first element in the given array:
1$array = [100, 200, 300];23$first = head($array);45// 100
1$array = [100, 200, 300];23$first = head($array);45// 100
last()
The last
function returns the last element in the given array:
1$array = [100, 200, 300];23$last = last($array);45// 300
1$array = [100, 200, 300];23$last = last($array);45// 300
Numbers
Number::abbreviate()
The Number::abbreviate
method returns the human-readable format of the provided numerical value, with an abbreviation for the units:
1use Illuminate\Support\Number;23$number = Number::abbreviate(1000);45// 1K67$number = Number::abbreviate(489939);89// 490K1011$number = Number::abbreviate(1230000, precision: 2);1213// 1.23M
1use Illuminate\Support\Number;23$number = Number::abbreviate(1000);45// 1K67$number = Number::abbreviate(489939);89// 490K1011$number = Number::abbreviate(1230000, precision: 2);1213// 1.23M
Number::clamp()
The Number::clamp
method ensures a given number stays within a specified range. If the number is lower than the minimum, the minimum value is returned. If the number is higher than the maximum, the maximum value is returned:
1use Illuminate\Support\Number;23$number = Number::clamp(105, min: 10, max: 100);45// 10067$number = Number::clamp(5, min: 10, max: 100);89// 101011$number = Number::clamp(10, min: 10, max: 100);1213// 101415$number = Number::clamp(20, min: 10, max: 100);1617// 20
1use Illuminate\Support\Number;23$number = Number::clamp(105, min: 10, max: 100);45// 10067$number = Number::clamp(5, min: 10, max: 100);89// 101011$number = Number::clamp(10, min: 10, max: 100);1213// 101415$number = Number::clamp(20, min: 10, max: 100);1617// 20
Number::currency()
The Number::currency
method returns the currency representation of the given value as a string:
1use Illuminate\Support\Number;23$currency = Number::currency(1000);45// $1,00067$currency = Number::currency(1000, in: 'EUR');89// €1,0001011$currency = Number::currency(1000, in: 'EUR', locale: 'de');1213// 1.000 €
1use Illuminate\Support\Number;23$currency = Number::currency(1000);45// $1,00067$currency = Number::currency(1000, in: 'EUR');89// €1,0001011$currency = Number::currency(1000, in: 'EUR', locale: 'de');1213// 1.000 €
Number::fileSize()
The Number::fileSize
method returns the file size representation of the given byte value as a string:
1use Illuminate\Support\Number;23$size = Number::fileSize(1024);45// 1 KB67$size = Number::fileSize(1024 * 1024);89// 1 MB1011$size = Number::fileSize(1024, precision: 2);1213// 1.00 KB
1use Illuminate\Support\Number;23$size = Number::fileSize(1024);45// 1 KB67$size = Number::fileSize(1024 * 1024);89// 1 MB1011$size = Number::fileSize(1024, precision: 2);1213// 1.00 KB
Number::forHumans()
The Number::forHumans
method returns the human-readable format of the provided numerical value:
1use Illuminate\Support\Number;23$number = Number::forHumans(1000);45// 1 thousand67$number = Number::forHumans(489939);89// 490 thousand1011$number = Number::forHumans(1230000, precision: 2);1213// 1.23 million
1use Illuminate\Support\Number;23$number = Number::forHumans(1000);45// 1 thousand67$number = Number::forHumans(489939);89// 490 thousand1011$number = Number::forHumans(1230000, precision: 2);1213// 1.23 million
Number::format()
The Number::format
method formats the given number into a locale specific string:
1use Illuminate\Support\Number;23$number = Number::format(100000);45// 100,00067$number = Number::format(100000, precision: 2);89// 100,000.001011$number = Number::format(100000.123, maxPrecision: 2);1213// 100,000.121415$number = Number::format(100000, locale: 'de');1617// 100.000
1use Illuminate\Support\Number;23$number = Number::format(100000);45// 100,00067$number = Number::format(100000, precision: 2);89// 100,000.001011$number = Number::format(100000.123, maxPrecision: 2);1213// 100,000.121415$number = Number::format(100000, locale: 'de');1617// 100.000
Number::ordinal()
The Number::ordinal
method returns a number's ordinal representation:
1use Illuminate\Support\Number;23$number = Number::ordinal(1);45// 1st67$number = Number::ordinal(2);89// 2nd1011$number = Number::ordinal(21);1213// 21st
1use Illuminate\Support\Number;23$number = Number::ordinal(1);45// 1st67$number = Number::ordinal(2);89// 2nd1011$number = Number::ordinal(21);1213// 21st
Number::percentage()
The Number::percentage
method returns the percentage representation of the given value as a string:
1use Illuminate\Support\Number;23$percentage = Number::percentage(10);45// 10%67$percentage = Number::percentage(10, precision: 2);89// 10.00%1011$percentage = Number::percentage(10.123, maxPrecision: 2);1213// 10.12%1415$percentage = Number::percentage(10, precision: 2, locale: 'de');1617// 10,00%
1use Illuminate\Support\Number;23$percentage = Number::percentage(10);45// 10%67$percentage = Number::percentage(10, precision: 2);89// 10.00%1011$percentage = Number::percentage(10.123, maxPrecision: 2);1213// 10.12%1415$percentage = Number::percentage(10, precision: 2, locale: 'de');1617// 10,00%
Number::spell()
The Number::spell
method transforms the given number into a string of words:
1use Illuminate\Support\Number;23$number = Number::spell(102);45// one hundred and two67$number = Number::spell(88, locale: 'fr');89// quatre-vingt-huit
1use Illuminate\Support\Number;23$number = Number::spell(102);45// one hundred and two67$number = Number::spell(88, locale: 'fr');89// quatre-vingt-huit
The after
argument allows you to specify a value after which all numbers should be spelled out:
1$number = Number::spell(10, after: 10);23// 1045$number = Number::spell(11, after: 10);67// eleven
1$number = Number::spell(10, after: 10);23// 1045$number = Number::spell(11, after: 10);67// eleven
The until
argument allows you to specify a value before which all numbers should be spelled out:
1$number = Number::spell(5, until: 10);23// five45$number = Number::spell(10, until: 10);67// 10
1$number = Number::spell(5, until: 10);23// five45$number = Number::spell(10, until: 10);67// 10
Number::useLocale()
The Number::useLocale
method sets the default number locale globally, which affects how numbers and currency are formatted by subsequent invocations to the Number
class's methods:
1use Illuminate\Support\Number;23/**4 * Bootstrap any application services.5 */6public function boot(): void7{8 Number::useLocale('de');9}
1use Illuminate\Support\Number;23/**4 * Bootstrap any application services.5 */6public function boot(): void7{8 Number::useLocale('de');9}
Number::withLocale()
The Number::withLocale
method executes the given closure using the specified locale and then restores the original locale after the callback has executed:
1use Illuminate\Support\Number;23$number = Number::withLocale('de', function () {4 return Number::format(1500);5});
1use Illuminate\Support\Number;23$number = Number::withLocale('de', function () {4 return Number::format(1500);5});
Paths
app_path()
The app_path
function returns the fully qualified path to your application's app
directory. You may also use the app_path
function to generate a fully qualified path to a file relative to the application directory:
1$path = app_path();23$path = app_path('Http/Controllers/Controller.php');
1$path = app_path();23$path = app_path('Http/Controllers/Controller.php');
base_path()
The base_path
function returns the fully qualified path to your application's root directory. You may also use the base_path
function to generate a fully qualified path to a given file relative to the project root directory:
1$path = base_path();23$path = base_path('vendor/bin');
1$path = base_path();23$path = base_path('vendor/bin');
config_path()
The config_path
function returns the fully qualified path to your application's config
directory. You may also use the config_path
function to generate a fully qualified path to a given file within the application's configuration directory:
1$path = config_path();23$path = config_path('app.php');
1$path = config_path();23$path = config_path('app.php');
database_path()
The database_path
function returns the fully qualified path to your application's database
directory. You may also use the database_path
function to generate a fully qualified path to a given file within the database directory:
1$path = database_path();23$path = database_path('factories/UserFactory.php');
1$path = database_path();23$path = database_path('factories/UserFactory.php');
lang_path()
The lang_path
function returns the fully qualified path to your application's lang
directory. You may also use the lang_path
function to generate a fully qualified path to a given file within the directory:
1$path = lang_path();23$path = lang_path('en/messages.php');
1$path = lang_path();23$path = lang_path('en/messages.php');
[!NOTE]
By default, the Laravel application skeleton does not include thelang
directory. If you would like to customize Laravel's language files, you may publish them via thelang:publish
Artisan command.
mix()
The mix
function returns the path to a versioned Mix file:
1$path = mix('css/app.css');
1$path = mix('css/app.css');
public_path()
The public_path
function returns the fully qualified path to your application's public
directory. You may also use the public_path
function to generate a fully qualified path to a given file within the public directory:
1$path = public_path();23$path = public_path('css/app.css');
1$path = public_path();23$path = public_path('css/app.css');
resource_path()
The resource_path
function returns the fully qualified path to your application's resources
directory. You may also use the resource_path
function to generate a fully qualified path to a given file within the resources directory:
1$path = resource_path();23$path = resource_path('sass/app.scss');
1$path = resource_path();23$path = resource_path('sass/app.scss');
storage_path()
The storage_path
function returns the fully qualified path to your application's storage
directory. You may also use the storage_path
function to generate a fully qualified path to a given file within the storage directory:
1$path = storage_path();23$path = storage_path('app/file.txt');
1$path = storage_path();23$path = storage_path('app/file.txt');
URLs
action()
The action
function generates a URL for the given controller action:
1use App\Http\Controllers\HomeController;23$url = action([HomeController::class, 'index']);
1use App\Http\Controllers\HomeController;23$url = action([HomeController::class, 'index']);
If the method accepts route parameters, you may pass them as the second argument to the method:
1$url = action([UserController::class, 'profile'], ['id' => 1]);
1$url = action([UserController::class, 'profile'], ['id' => 1]);
asset()
The asset
function generates a URL for an asset using the current scheme of the request (HTTP or HTTPS):
1$url = asset('img/photo.jpg');
1$url = asset('img/photo.jpg');
You can configure the asset URL host by setting the ASSET_URL
variable in your .env
file. This can be useful if you host your assets on an external service like Amazon S3 or another CDN:
1// ASSET_URL=http://example.com/assets23$url = asset('img/photo.jpg'); // http://example.com/assets/img/photo.jpg
1// ASSET_URL=http://example.com/assets23$url = asset('img/photo.jpg'); // http://example.com/assets/img/photo.jpg
route()
The route
function generates a URL for a given named route:
1$url = route('route.name');
1$url = route('route.name');
If the route accepts parameters, you may pass them as the second argument to the function:
1$url = route('route.name', ['id' => 1]);
1$url = route('route.name', ['id' => 1]);
By default, the route
function generates an absolute URL. If you wish to generate a relative URL, you may pass false
as the third argument to the function:
1$url = route('route.name', ['id' => 1], false);
1$url = route('route.name', ['id' => 1], false);
secure_asset()
The secure_asset
function generates a URL for an asset using HTTPS:
1$url = secure_asset('img/photo.jpg');
1$url = secure_asset('img/photo.jpg');
secure_url()
The secure_url
function generates a fully qualified HTTPS URL to the given path. Additional URL segments may be passed in the function's second argument:
1$url = secure_url('user/profile');23$url = secure_url('user/profile', [1]);
1$url = secure_url('user/profile');23$url = secure_url('user/profile', [1]);
to_route()
The to_route
function generates a redirect HTTP response for a given named route:
1return to_route('users.show', ['user' => 1]);
1return to_route('users.show', ['user' => 1]);
If necessary, you may pass the HTTP status code that should be assigned to the redirect and any additional response headers as the third and fourth arguments to the to_route
method:
1return to_route('users.show', ['user' => 1], 302, ['X-Framework' => 'Laravel']);
1return to_route('users.show', ['user' => 1], 302, ['X-Framework' => 'Laravel']);
url()
The url
function generates a fully qualified URL to the given path:
1$url = url('user/profile');23$url = url('user/profile', [1]);
1$url = url('user/profile');23$url = url('user/profile', [1]);
If no path is provided, an Illuminate\Routing\UrlGenerator
instance is returned:
1$current = url()->current();23$full = url()->full();45$previous = url()->previous();
1$current = url()->current();23$full = url()->full();45$previous = url()->previous();
Miscellaneous
abort()
The abort
function throws an HTTP exception which will be rendered by the exception handler:
1abort(403);
1abort(403);
You may also provide the exception's message and custom HTTP response headers that should be sent to the browser:
1abort(403, 'Unauthorized.', $headers);
1abort(403, 'Unauthorized.', $headers);
abort_if()
The abort_if
function throws an HTTP exception if a given boolean expression evaluates to true
:
1abort_if(! Auth::user()->isAdmin(), 403);
1abort_if(! Auth::user()->isAdmin(), 403);
Like the abort
method, you may also provide the exception's response text as the third argument and an array of custom response headers as the fourth argument to the function.
abort_unless()
The abort_unless
function throws an HTTP exception if a given boolean expression evaluates to false
:
1abort_unless(Auth::user()->isAdmin(), 403);
1abort_unless(Auth::user()->isAdmin(), 403);
Like the abort
method, you may also provide the exception's response text as the third argument and an array of custom response headers as the fourth argument to the function.
app()
The app
function returns the service container instance:
1$container = app();
1$container = app();
You may pass a class or interface name to resolve it from the container:
1$api = app('HelpSpot\API');
1$api = app('HelpSpot\API');
auth()
The auth
function returns an authenticator instance. You may use it as an alternative to the Auth
facade:
1$user = auth()->user();
1$user = auth()->user();
If needed, you may specify which guard instance you would like to access:
1$user = auth('admin')->user();
1$user = auth('admin')->user();
back()
The back
function generates a redirect HTTP response to the user's previous location:
1return back($status = 302, $headers = [], $fallback = '/');23return back();
1return back($status = 302, $headers = [], $fallback = '/');23return back();
bcrypt()
The bcrypt
function hashes the given value using Bcrypt. You may use this function as an alternative to the Hash
facade:
1$password = bcrypt('my-secret-password');
1$password = bcrypt('my-secret-password');
blank()
The blank
function determines whether the given value is "blank":
1blank('');2blank(' ');3blank(null);4blank(collect());56// true78blank(0);9blank(true);10blank(false);1112// false
1blank('');2blank(' ');3blank(null);4blank(collect());56// true78blank(0);9blank(true);10blank(false);1112// false
For the inverse of blank
, see the filled
method.
broadcast()
The broadcast
function broadcasts the given event to its listeners:
1broadcast(new UserRegistered($user));23broadcast(new UserRegistered($user))->toOthers();
1broadcast(new UserRegistered($user));23broadcast(new UserRegistered($user))->toOthers();
cache()
The cache
function may be used to get values from the cache. If the given key does not exist in the cache, an optional default value will be returned:
1$value = cache('key');23$value = cache('key', 'default');
1$value = cache('key');23$value = cache('key', 'default');
You may add items to the cache by passing an array of key / value pairs to the function. You should also pass the number of seconds or duration the cached value should be considered valid:
1cache(['key' => 'value'], 300);23cache(['key' => 'value'], now()->addSeconds(10));
1cache(['key' => 'value'], 300);23cache(['key' => 'value'], now()->addSeconds(10));
class_uses_recursive()
The class_uses_recursive
function returns all traits used by a class, including traits used by all of its parent classes:
1$traits = class_uses_recursive(App\Models\User::class);
1$traits = class_uses_recursive(App\Models\User::class);
collect()
The collect
function creates a collection instance from the given value:
1$collection = collect(['taylor', 'abigail']);
1$collection = collect(['taylor', 'abigail']);
config()
The config
function gets the value of a configuration variable. The configuration values may be accessed using "dot" syntax, which includes the name of the file and the option you wish to access. A default value may be specified and is returned if the configuration option does not exist:
1$value = config('app.timezone');23$value = config('app.timezone', $default);
1$value = config('app.timezone');23$value = config('app.timezone', $default);
You may set configuration variables at runtime by passing an array of key / value pairs. However, note that this function only affects the configuration value for the current request and does not update your actual configuration values:
1config(['app.debug' => true]);
1config(['app.debug' => true]);
cookie()
The cookie
function creates a new cookie instance:
1$cookie = cookie('name', 'value', $minutes);
1$cookie = cookie('name', 'value', $minutes);
csrf_field()
The csrf_field
function generates an HTML hidden
input field containing the value of the CSRF token. For example, using Blade syntax:
1{{ csrf_field() }}
1{{ csrf_field() }}
csrf_token()
The csrf_token
function retrieves the value of the current CSRF token:
1$token = csrf_token();
1$token = csrf_token();
decrypt()
The decrypt
function decrypts the given value. You may use this function as an alternative to the Crypt
facade:
1$password = decrypt($value);
1$password = decrypt($value);
dd()
The dd
function dumps the given variables and ends the execution of the script:
1dd($value);23dd($value1, $value2, $value3, ...);
1dd($value);23dd($value1, $value2, $value3, ...);
If you do not want to halt the execution of your script, use the dump
function instead.
dispatch()
The dispatch
function pushes the given job onto the Laravel job queue:
1dispatch(new App\Jobs\SendEmails);
1dispatch(new App\Jobs\SendEmails);
dispatch_sync()
The dispatch_sync
function pushes the given job to the sync queue so that it is processed immediately:
1dispatch_sync(new App\Jobs\SendEmails);
1dispatch_sync(new App\Jobs\SendEmails);
dump()
The dump
function dumps the given variables:
1dump($value);23dump($value1, $value2, $value3, ...);
1dump($value);23dump($value1, $value2, $value3, ...);
If you want to stop executing the script after dumping the variables, use the dd
function instead.
encrypt()
The encrypt
function encrypts the given value. You may use this function as an alternative to the Crypt
facade:
1$secret = encrypt('my-secret-value');
1$secret = encrypt('my-secret-value');
env()
The env
function retrieves the value of an environment variable or returns a default value:
1$env = env('APP_ENV');23$env = env('APP_ENV', 'production');
1$env = env('APP_ENV');23$env = env('APP_ENV', 'production');
[!WARNING]
If you execute theconfig:cache
command during your deployment process, you should be sure that you are only calling theenv
function from within your configuration files. Once the configuration has been cached, the.env
file will not be loaded and all calls to theenv
function will returnnull
.
event()
The event
function dispatches the given event to its listeners:
1event(new UserRegistered($user));
1event(new UserRegistered($user));
fake()
The fake
function resolves a Faker singleton from the container, which can be useful when creating fake data in model factories, database seeding, tests, and prototyping views:
1@for($i = 0; $i < 10; $i++)2 <dl>3 <dt>Name</dt>4 <dd>{{ fake()->name() }}</dd>56 <dt>Email</dt>7 <dd>{{ fake()->unique()->safeEmail() }}</dd>8 </dl>9@endfor
1@for($i = 0; $i < 10; $i++)2 <dl>3 <dt>Name</dt>4 <dd>{{ fake()->name() }}</dd>56 <dt>Email</dt>7 <dd>{{ fake()->unique()->safeEmail() }}</dd>8 </dl>9@endfor
By default, the fake
function will utilize the app.faker_locale
configuration option in your config/app.php
configuration file; however, you may also specify the locale by passing it to the fake
function. Each locale will resolve an individual singleton:
1fake('nl_NL')->name()
1fake('nl_NL')->name()
filled()
The filled
function determines whether the given value is not "blank":
1filled(0);2filled(true);3filled(false);45// true67filled('');8filled(' ');9filled(null);10filled(collect());1112// false
1filled(0);2filled(true);3filled(false);45// true67filled('');8filled(' ');9filled(null);10filled(collect());1112// false
For the inverse of filled
, see the blank
method.
info()
The info
function will write information to your application's log:
1info('Some helpful information!');
1info('Some helpful information!');
An array of contextual data may also be passed to the function:
1info('User login attempt failed.', ['id' => $user->id]);
1info('User login attempt failed.', ['id' => $user->id]);
logger()
The logger
function can be used to write a debug
level message to the log:
1logger('Debug message');
1logger('Debug message');
An array of contextual data may also be passed to the function:
1logger('User has logged in.', ['id' => $user->id]);
1logger('User has logged in.', ['id' => $user->id]);
A logger instance will be returned if no value is passed to the function:
1logger()->error('You are not allowed here.');
1logger()->error('You are not allowed here.');
method_field()
The method_field
function generates an HTML hidden
input field containing the spoofed value of the form's HTTP verb. For example, using Blade syntax:
1<form method="POST">2 {{ method_field('DELETE') }}3</form>
1<form method="POST">2 {{ method_field('DELETE') }}3</form>
now()
The now
function creates a new Illuminate\Support\Carbon
instance for the current time:
1$now = now();
1$now = now();
old()
The old
function retrieves an old input value flashed into the session:
1$value = old('value');23$value = old('value', 'default');
1$value = old('value');23$value = old('value', 'default');
Since the "default value" provided as the second argument to the old
function is often an attribute of an Eloquent model, Laravel allows you to simply pass the entire Eloquent model as the second argument to the old
function. When doing so, Laravel will assume the first argument provided to the old
function is the name of the Eloquent attribute that should be considered the "default value":
1{{ old('name', $user->name) }}23// Is equivalent to...45{{ old('name', $user) }}
1{{ old('name', $user->name) }}23// Is equivalent to...45{{ old('name', $user) }}
optional()
The optional
function accepts any argument and allows you to access properties or call methods on that object. If the given object is null
, properties and methods will return null
instead of causing an error:
1return optional($user->address)->street;23{!! old('name', optional($user)->name) !!}
1return optional($user->address)->street;23{!! old('name', optional($user)->name) !!}
The optional
function also accepts a closure as its second argument. The closure will be invoked if the value provided as the first argument is not null:
1return optional(User::find($id), function (User $user) {2 return $user->name;3});
1return optional(User::find($id), function (User $user) {2 return $user->name;3});
policy()
The policy
method retrieves a policy instance for a given class:
1$policy = policy(App\Models\User::class);
1$policy = policy(App\Models\User::class);
redirect()
The redirect
function returns a redirect HTTP response, or returns the redirector instance if called with no arguments:
1return redirect($to = null, $status = 302, $headers = [], $https = null);23return redirect('/home');45return redirect()->route('route.name');
1return redirect($to = null, $status = 302, $headers = [], $https = null);23return redirect('/home');45return redirect()->route('route.name');
report()
The report
function will report an exception using your exception handler:
1report($e);
1report($e);
The report
function also accepts a string as an argument. When a string is given to the function, the function will create an exception with the given string as its message:
1report('Something went wrong.');
1report('Something went wrong.');
report_if()
The report_if
function will report an exception using your exception handler if the given condition is true
:
1report_if($shouldReport, $e);23report_if($shouldReport, 'Something went wrong.');
1report_if($shouldReport, $e);23report_if($shouldReport, 'Something went wrong.');
report_unless()
The report_unless
function will report an exception using your exception handler if the given condition is false
:
1report_unless($reportingDisabled, $e);23report_unless($reportingDisabled, 'Something went wrong.');
1report_unless($reportingDisabled, $e);23report_unless($reportingDisabled, 'Something went wrong.');
request()
The request
function returns the current request instance or obtains an input field's value from the current request:
1$request = request();23$value = request('key', $default);
1$request = request();23$value = request('key', $default);
rescue()
The rescue
function executes the given closure and catches any exceptions that occur during its execution. All exceptions that are caught will be sent to your exception handler; however, the request will continue processing:
1return rescue(function () {2 return $this->method();3});
1return rescue(function () {2 return $this->method();3});
You may also pass a second argument to the rescue
function. This argument will be the "default" value that should be returned if an exception occurs while executing the closure:
1return rescue(function () {2 return $this->method();3}, false);45return rescue(function () {6 return $this->method();7}, function () {8 return $this->failure();9});
1return rescue(function () {2 return $this->method();3}, false);45return rescue(function () {6 return $this->method();7}, function () {8 return $this->failure();9});
A report
argument may be provided to the rescue
function to determine if the exception should be reported via the report
function:
1return rescue(function () {2 return $this->method();3}, report: function (Throwable $throwable) {4 return $throwable instanceof InvalidArgumentException;5});
1return rescue(function () {2 return $this->method();3}, report: function (Throwable $throwable) {4 return $throwable instanceof InvalidArgumentException;5});
resolve()
The resolve
function resolves a given class or interface name to an instance using the service container:
1$api = resolve('HelpSpot\API');
1$api = resolve('HelpSpot\API');
response()
The response
function creates a response instance or obtains an instance of the response factory:
1return response('Hello World', 200, $headers);23return response()->json(['foo' => 'bar'], 200, $headers);
1return response('Hello World', 200, $headers);23return response()->json(['foo' => 'bar'], 200, $headers);
retry()
The retry
function attempts to execute the given callback until the given maximum attempt threshold is met. If the callback does not throw an exception, its return value will be returned. If the callback throws an exception, it will automatically be retried. If the maximum attempt count is exceeded, the exception will be thrown:
1return retry(5, function () {2 // Attempt 5 times while resting 100ms between attempts...3}, 100);
1return retry(5, function () {2 // Attempt 5 times while resting 100ms between attempts...3}, 100);
If you would like to manually calculate the number of milliseconds to sleep between attempts, you may pass a closure as the third argument to the retry
function:
1use Exception;23return retry(5, function () {4 // ...5}, function (int $attempt, Exception $exception) {6 return $attempt * 100;7});
1use Exception;23return retry(5, function () {4 // ...5}, function (int $attempt, Exception $exception) {6 return $attempt * 100;7});
For convenience, you may provide an array as the first argument to the retry
function. This array will be used to determine how many milliseconds to sleep between subsequent attempts:
1return retry([100, 200], function () {2 // Sleep for 100ms on first retry, 200ms on second retry...3});
1return retry([100, 200], function () {2 // Sleep for 100ms on first retry, 200ms on second retry...3});
To only retry under specific conditions, you may pass a closure as the fourth argument to the retry
function:
1use Exception;23return retry(5, function () {4 // ...5}, 100, function (Exception $exception) {6 return $exception instanceof RetryException;7});
1use Exception;23return retry(5, function () {4 // ...5}, 100, function (Exception $exception) {6 return $exception instanceof RetryException;7});
session()
The session
function may be used to get or set session values:
1$value = session('key');
1$value = session('key');
You may set values by passing an array of key / value pairs to the function:
1session(['chairs' => 7, 'instruments' => 3]);
1session(['chairs' => 7, 'instruments' => 3]);
The session store will be returned if no value is passed to the function:
1$value = session()->get('key');23session()->put('key', $value);
1$value = session()->get('key');23session()->put('key', $value);
tap()
The tap
function accepts two arguments: an arbitrary $value
and a closure. The $value
will be passed to the closure and then be returned by the tap
function. The return value of the closure is irrelevant:
1$user = tap(User::first(), function (User $user) {2 $user->name = 'taylor';34 $user->save();5});
1$user = tap(User::first(), function (User $user) {2 $user->name = 'taylor';34 $user->save();5});
If no closure is passed to the tap
function, you may call any method on the given $value
. The return value of the method you call will always be $value
, regardless of what the method actually returns in its definition. For example, the Eloquent update
method typically returns an integer. However, we can force the method to return the model itself by chaining the update
method call through the tap
function:
1$user = tap($user)->update([2 'name' => $name,3 'email' => $email,4]);
1$user = tap($user)->update([2 'name' => $name,3 'email' => $email,4]);
To add a tap
method to a class, you may add the Illuminate\Support\Traits\Tappable
trait to the class. The tap
method of this trait accepts a Closure as its only argument. The object instance itself will be passed to the Closure and then be returned by the tap
method:
1return $user->tap(function (User $user) {2 // ...3});
1return $user->tap(function (User $user) {2 // ...3});
throw_if()
The throw_if
function throws the given exception if a given boolean expression evaluates to true
:
1throw_if(! Auth::user()->isAdmin(), AuthorizationException::class);23throw_if(4 ! Auth::user()->isAdmin(),5 AuthorizationException::class,6 'You are not allowed to access this page.'7);
1throw_if(! Auth::user()->isAdmin(), AuthorizationException::class);23throw_if(4 ! Auth::user()->isAdmin(),5 AuthorizationException::class,6 'You are not allowed to access this page.'7);
throw_unless()
The throw_unless
function throws the given exception if a given boolean expression evaluates to false
:
1throw_unless(Auth::user()->isAdmin(), AuthorizationException::class);23throw_unless(4 Auth::user()->isAdmin(),5 AuthorizationException::class,6 'You are not allowed to access this page.'7);
1throw_unless(Auth::user()->isAdmin(), AuthorizationException::class);23throw_unless(4 Auth::user()->isAdmin(),5 AuthorizationException::class,6 'You are not allowed to access this page.'7);
today()
The today
function creates a new Illuminate\Support\Carbon
instance for the current date:
1$today = today();
1$today = today();
trait_uses_recursive()
The trait_uses_recursive
function returns all traits used by a trait:
1$traits = trait_uses_recursive(\Illuminate\Notifications\Notifiable::class);
1$traits = trait_uses_recursive(\Illuminate\Notifications\Notifiable::class);
transform()
The transform
function executes a closure on a given value if the value is not blank and then returns the return value of the closure:
1$callback = function (int $value) {2 return $value * 2;3};45$result = transform(5, $callback);67// 10
1$callback = function (int $value) {2 return $value * 2;3};45$result = transform(5, $callback);67// 10
A default value or closure may be passed as the third argument to the function. This value will be returned if the given value is blank:
1$result = transform(null, $callback, 'The value is blank');23// The value is blank
1$result = transform(null, $callback, 'The value is blank');23// The value is blank
validator()
The validator
function creates a new validator instance with the given arguments. You may use it as an alternative to the Validator
facade:
1$validator = validator($data, $rules, $messages);
1$validator = validator($data, $rules, $messages);
value()
The value
function returns the value it is given. However, if you pass a closure to the function, the closure will be executed and its returned value will be returned:
1$result = value(true);23// true45$result = value(function () {6 return false;7});89// false
1$result = value(true);23// true45$result = value(function () {6 return false;7});89// false
Additional arguments may be passed to the value
function. If the first argument is a closure then the additional parameters will be passed to the closure as arguments, otherwise they will be ignored:
1$result = value(function (string $name) {2 return $name;3}, 'Taylor');45// 'Taylor'
1$result = value(function (string $name) {2 return $name;3}, 'Taylor');45// 'Taylor'
view()
The view
function retrieves a view instance:
1return view('auth.login');
1return view('auth.login');
with()
The with
function returns the value it is given. If a closure is passed as the second argument to the function, the closure will be executed and its returned value will be returned:
1$callback = function (mixed $value) {2 return is_numeric($value) ? $value * 2 : 0;3};45$result = with(5, $callback);67// 1089$result = with(null, $callback);1011// 01213$result = with(5, null);1415// 5
1$callback = function (mixed $value) {2 return is_numeric($value) ? $value * 2 : 0;3};45$result = with(5, $callback);67// 1089$result = with(null, $callback);1011// 01213$result = with(5, null);1415// 5
Other Utilities
Benchmarking
Sometimes you may wish to quickly test the performance of certain parts of your application. On those occasions, you may utilize the Benchmark
support class to measure the number of milliseconds it takes for the given callbacks to complete:
1<?php23use App\Models\User;4use Illuminate\Support\Benchmark;56Benchmark::dd(fn () => User::find(1)); // 0.1 ms78Benchmark::dd([9 'Scenario 1' => fn () => User::count(), // 0.5 ms10 'Scenario 2' => fn () => User::all()->count(), // 20.0 ms11]);
1<?php23use App\Models\User;4use Illuminate\Support\Benchmark;56Benchmark::dd(fn () => User::find(1)); // 0.1 ms78Benchmark::dd([9 'Scenario 1' => fn () => User::count(), // 0.5 ms10 'Scenario 2' => fn () => User::all()->count(), // 20.0 ms11]);
By default, the given callbacks will be executed once (one iteration), and their duration will be displayed in the browser / console.
To invoke a callback more than once, you may specify the number of iterations that the callback should be invoked as the second argument to the method. When executing a callback more than once, the Benchmark
class will return the average amount of milliseconds it took to execute the callback across all iterations:
1Benchmark::dd(fn () => User::count(), iterations: 10); // 0.5 ms
1Benchmark::dd(fn () => User::count(), iterations: 10); // 0.5 ms
Sometimes, you may want to benchmark the execution of a callback while still obtaining the value returned by the callback. The value
method will return a tuple containing the value returned by the callback and the amount of milliseconds it took to execute the callback:
1[$count, $duration] = Benchmark::value(fn () => User::count());
1[$count, $duration] = Benchmark::value(fn () => User::count());
Dates
Laravel includes Carbon, a powerful date and time manipulation library. To create a new Carbon
instance, you may invoke the now
function. This function is globally available within your Laravel application:
1$now = now();
1$now = now();
Or, you may create a new Carbon
instance using the Illuminate\Support\Carbon
class:
1use Illuminate\Support\Carbon;23$now = Carbon::now();
1use Illuminate\Support\Carbon;23$now = Carbon::now();
For a thorough discussion of Carbon and its features, please consult the official Carbon documentation.
Lottery
Laravel's lottery class may be used to execute callbacks based on a set of given odds. This can be particularly useful when you only want to execute code for a percentage of your incoming requests:
1use Illuminate\Support\Lottery;23Lottery::odds(1, 20)4 ->winner(fn () => $user->won())5 ->loser(fn () => $user->lost())6 ->choose();
1use Illuminate\Support\Lottery;23Lottery::odds(1, 20)4 ->winner(fn () => $user->won())5 ->loser(fn () => $user->lost())6 ->choose();
You may combine Laravel's lottery class with other Laravel features. For example, you may wish to only report a small percentage of slow queries to your exception handler. And, since the lottery class is callable, we may pass an instance of the class into any method that accepts callables:
1use Carbon\CarbonInterval;2use Illuminate\Support\Facades\DB;3use Illuminate\Support\Lottery;45DB::whenQueryingForLongerThan(6 CarbonInterval::seconds(2),7 Lottery::odds(1, 100)->winner(fn () => report('Querying > 2 seconds.')),8);
1use Carbon\CarbonInterval;2use Illuminate\Support\Facades\DB;3use Illuminate\Support\Lottery;45DB::whenQueryingForLongerThan(6 CarbonInterval::seconds(2),7 Lottery::odds(1, 100)->winner(fn () => report('Querying > 2 seconds.')),8);
Testing Lotteries
Laravel provides some simple methods to allow you to easily test your application's lottery invocations:
1// Lottery will always win...2Lottery::alwaysWin();34// Lottery will always lose...5Lottery::alwaysLose();67// Lottery will win then lose, and finally return to normal behavior...8Lottery::fix([true, false]);910// Lottery will return to normal behavior...11Lottery::determineResultsNormally();
1// Lottery will always win...2Lottery::alwaysWin();34// Lottery will always lose...5Lottery::alwaysLose();67// Lottery will win then lose, and finally return to normal behavior...8Lottery::fix([true, false]);910// Lottery will return to normal behavior...11Lottery::determineResultsNormally();
Pipeline
Laravel's Pipeline
facade provides a convenient way to "pipe" a given input through a series of invokable classes, closures, or callables, giving each class the opportunity to inspect or modify the input and invoke the next callable in the pipeline:
1use Closure;2use App\Models\User;3use Illuminate\Support\Facades\Pipeline;45$user = Pipeline::send($user)6 ->through([7 function (User $user, Closure $next) {8 // ...910 return $next($user);11 },12 function (User $user, Closure $next) {13 // ...1415 return $next($user);16 },17 ])18 ->then(fn (User $user) => $user);
1use Closure;2use App\Models\User;3use Illuminate\Support\Facades\Pipeline;45$user = Pipeline::send($user)6 ->through([7 function (User $user, Closure $next) {8 // ...910 return $next($user);11 },12 function (User $user, Closure $next) {13 // ...1415 return $next($user);16 },17 ])18 ->then(fn (User $user) => $user);
As you can see, each invokable class or closure in the pipeline is provided the input and a $next
closure. Invoking the $next
closure will invoke the next callable in the pipeline. As you may have noticed, this is very similar to middleware.
When the last callable in the pipeline invokes the $next
closure, the callable provided to the then
method will be invoked. Typically, this callable will simply return the given input.
Of course, as discussed previously, you are not limited to providing closures to your pipeline. You may also provide invokable classes. If a class name is provided, the class will be instantiated via Laravel's service container, allowing dependencies to be injected into the invokable class:
1$user = Pipeline::send($user)2 ->through([3 GenerateProfilePhoto::class,4 ActivateSubscription::class,5 SendWelcomeEmail::class,6 ])7 ->then(fn (User $user) => $user);
1$user = Pipeline::send($user)2 ->through([3 GenerateProfilePhoto::class,4 ActivateSubscription::class,5 SendWelcomeEmail::class,6 ])7 ->then(fn (User $user) => $user);
Sleep
Laravel's Sleep
class is a light-weight wrapper around PHP's native sleep
and usleep
functions, offering greater testability while also exposing a developer friendly API for working with time:
1use Illuminate\Support\Sleep;23$waiting = true;45while ($waiting) {6 Sleep::for(1)->second();78 $waiting = /* ... */;9}
1use Illuminate\Support\Sleep;23$waiting = true;45while ($waiting) {6 Sleep::for(1)->second();78 $waiting = /* ... */;9}
The Sleep
class offers a variety of methods that allow you to work with different units of time:
1// Pause execution for 90 seconds...2Sleep::for(1.5)->minutes();34// Pause execution for 2 seconds...5Sleep::for(2)->seconds();67// Pause execution for 500 milliseconds...8Sleep::for(500)->milliseconds();910// Pause execution for 5,000 microseconds...11Sleep::for(5000)->microseconds();1213// Pause execution until a given time...14Sleep::until(now()->addMinute());1516// Alias of PHP's native "sleep" function...17Sleep::sleep(2);1819// Alias of PHP's native "usleep" function...20Sleep::usleep(5000);
1// Pause execution for 90 seconds...2Sleep::for(1.5)->minutes();34// Pause execution for 2 seconds...5Sleep::for(2)->seconds();67// Pause execution for 500 milliseconds...8Sleep::for(500)->milliseconds();910// Pause execution for 5,000 microseconds...11Sleep::for(5000)->microseconds();1213// Pause execution until a given time...14Sleep::until(now()->addMinute());1516// Alias of PHP's native "sleep" function...17Sleep::sleep(2);1819// Alias of PHP's native "usleep" function...20Sleep::usleep(5000);
To easily combine units of time, you may use the and
method:
1Sleep::for(1)->second()->and(10)->milliseconds();
1Sleep::for(1)->second()->and(10)->milliseconds();
Testing Sleep
When testing code that utilizes the Sleep
class or PHP's native sleep functions, your test will pause execution. As you might expect, this makes your test suite significantly slower. For example, imagine you are testing the following code:
1$waiting = /* ... */;23$seconds = 1;45while ($waiting) {6 Sleep::for($seconds++)->seconds();78 $waiting = /* ... */;9}
1$waiting = /* ... */;23$seconds = 1;45while ($waiting) {6 Sleep::for($seconds++)->seconds();78 $waiting = /* ... */;9}
Typically, testing this code would take at least one second. Luckily, the Sleep
class allows us to "fake" sleeping so that our test suite stays fast:
1public function test_it_waits_until_ready()2{3 Sleep::fake();45 // ...6}
1public function test_it_waits_until_ready()2{3 Sleep::fake();45 // ...6}
When faking the Sleep
class, the actual execution pause is by-passed, leading to a substantially faster test.
Once the Sleep
class has been faked, it is possible to make assertions against the expected "sleeps" that should have occurred. To illustrate this, let's imagine we are testing code that pauses execution three times, with each pause increasing by a single second. Using the assertSequence
method, we can assert that our code "slept" for the proper amount of time while keeping our test fast:
1public function test_it_checks_if_ready_four_times()2{3 Sleep::fake();45 // ...67 Sleep::assertSequence([8 Sleep::for(1)->second(),9 Sleep::for(2)->seconds(),10 Sleep::for(3)->seconds(),11 ]);12}
1public function test_it_checks_if_ready_four_times()2{3 Sleep::fake();45 // ...67 Sleep::assertSequence([8 Sleep::for(1)->second(),9 Sleep::for(2)->seconds(),10 Sleep::for(3)->seconds(),11 ]);12}
Of course, the Sleep
class offers a variety of other assertions you may use when testing:
1use Carbon\CarbonInterval as Duration;2use Illuminate\Support\Sleep;34// Assert that sleep was called 3 times...5Sleep::assertSleptTimes(3);67// Assert against the duration of sleep...8Sleep::assertSlept(function (Duration $duration): bool {9 return /* ... */;10}, times: 1);1112// Assert that the Sleep class was never invoked...13Sleep::assertNeverSlept();1415// Assert that, even if Sleep was called, no execution paused occurred...16Sleep::assertInsomniac();
1use Carbon\CarbonInterval as Duration;2use Illuminate\Support\Sleep;34// Assert that sleep was called 3 times...5Sleep::assertSleptTimes(3);67// Assert against the duration of sleep...8Sleep::assertSlept(function (Duration $duration): bool {9 return /* ... */;10}, times: 1);1112// Assert that the Sleep class was never invoked...13Sleep::assertNeverSlept();1415// Assert that, even if Sleep was called, no execution paused occurred...16Sleep::assertInsomniac();
Sometimes it may be useful to perform an action whenever a fake sleep occurs in your application code. To achieve this, you may provide a callback to the whenFakingSleep
method. In the following example, we use Laravel's time manipulation helpers to instantly progress time by the duration of each sleep:
1use Carbon\CarbonInterval as Duration;23$this->freezeTime();45Sleep::fake();67Sleep::whenFakingSleep(function (Duration $duration) {8 // Progress time when faking sleep...9 $this->travel($duration->totalMilliseconds)->milliseconds();10});
1use Carbon\CarbonInterval as Duration;23$this->freezeTime();45Sleep::fake();67Sleep::whenFakingSleep(function (Duration $duration) {8 // Progress time when faking sleep...9 $this->travel($duration->totalMilliseconds)->milliseconds();10});
Laravel uses the Sleep
class internally whenever it is pausing execution. For example, the retry
helper uses the Sleep
class when sleeping, allowing for improved testability when using that helper.