從v5.4.12開始,Laravel Collections如今包括一個when方法,容許您對項目執行條件操做,而不會中斷鏈。blog
像全部其餘Laravel 集合方法,這一個能夠有不少用例,選擇其中一個例子,想到的是可以基於查詢字符串參數進行過濾。字符串
爲了演示這個例子,讓咱們假設咱們有一個來自Laravel News Podcast的主機列表:io
$hosts = [ ['name' => 'Eric Barnes', 'location' => 'USA', 'is_active' => 0], ['name' => 'Jack Fruh', 'location' => 'USA', 'is_active' => 0], ['name' => 'Jacob Bennett', 'location' => 'USA', 'is_active' => 1], ['name' => 'Michael Dyrynda', 'location' => 'AU', 'is_active' => 1], ];
舊版本要根據查詢字符串進行過濾,您可能會這樣作:ast
$inUsa = collect($hosts)->where('location', 'USA'); if (request('retired')) { $inUsa = $inUsa->filter(function($employee){ return ! $employee['is_active']; }); }
使用新when方法,您如今能夠在一個鏈式操做中執行此操做:function
$inUsa = collect($hosts) ->where('location', 'USA') ->when(request('retired'), function($collection) { return $collection->reject(function($employee){ return $employee['is_active']; }); });