How to get only one column as one dimentional array in laravel 5.2 using eloquent?
I have tried:
$array = Word_relation::select(\'word_two\')->wh
I think you can achieve it by using the below code
Model::get(['ColumnName'])->toArray();