same column in and where laravel query

Solutions on MaxInterview for same column in and where laravel query by the best coders in the world

showing results for - "same column in and where laravel query"
Eduardo
22 Apr 2019
1$q_editpost = Menu::select('id', 'bcrumb', 'heading', 'content_id', 'content_type')
2        ->whereIn('publish', ['pending', 'running'])
3        ->get();