Facades
This package extends Laravel's framework facades with new useful methods.
Arr
exceptValues
Arr::exceptValues([
"hello" => "world",
"foo" => "bar"
], "bar");
// ["hello" => "world"]onlyValues
Arr::onlyValues([
"hello" => "world",
"foo" => "bar"
], "world");
// ["hello" => "world"]query
Collection
toCsv
templateJoin
Number
toShort
toByteUnit
Storage
humanSize
Str
parseQuery
isJsonStructure
emailDomain
Last updated