I have an array and i use foreach, below is code
@foreach($param2 as $par)
{{$par->account}}
@endforeach
now i want to use the $par->account in drop down
i am using below code
{!! Form::select('[
'option' => $par->account
], null, ['placeholder' => '<select>','class'=>'form-control']) !!}
there are 3 items in array, but it shows only single item.