8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
12.13.0
8.3.13
No response
The Collection value() method fails to return falsey values such as '0', 0, or false, even when a matching item exists in the collection.
value()
Route::get('test', function () { dd(collect([ [ 'name' => 'currency', 'value' => '0' // Also, false, '0' ], [ 'name' => 'currency_symbol', 'value' => 'USD' ], ])->where('name', 'currency')->value('value')); }); // Expected: '0' // Actual: null