Skip to main content

Command Palette

Search for a command to run...

Laravel Tap Function

Published
1 min readView as Markdown
return collect($items)
    ->where('active', 1)
    ->tap(function($collection){
        return var_dump($collection->pluck('name'));
    })
    ->where('member', 1)
    ->tap(function($collection){
        return var_dump($collection->pluck('name'));
    });

More from this blog

Khang Nguyen

119 posts