Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel collection max

$max = collect([['foo' => 10], ['foo' => 20]])->max('foo');

// 20

$max = collect([1, 2, 3, 4, 5])->max();

// 5
Source by laravel.com #
 
PREVIOUS NEXT
Tagged: #laravel #collection #max
ADD COMMENT
Topic
Name
8+9 =