Hello everyone i am having some trouble with laravel DB class
$arr = ['onoma', 'epitheto'];
$data = "'".implode("', '", $arr) . "'";
$content = DB::table($name)->pluck($data);
When i do it manually like
$content = DB::table($name)->pluck('onoma','epitheto');
Everything is working fine. But with implode() functions i get this error
Column not found: 1054 Unknown column ''onoma', 'epitheto'' in 'field list' (SQL: select
'onoma', 'epitheto'fromxrister)
$data = "'".implode("','", $arr)."'";remove all the spaces'onoma','epitheto'fromxrister)'