Hi i'm using laravel collective, im trying to load the selected default value from the datbase
// $ring->homepage
// holds 0 or 1
{!! Form::select('onhome', [0 => 'Nee', 1 => 'Ja'], null, ['class' => 'form-control selectpicker']) !!}
According to the documentation this should work
{!! Form::select('onhome', [0 => 'Nee', 1 => 'Ja'], $ring->homepage, ['class' => 'form-control selectpicker']) !!}
But it's not working
It still shows 0 => 'Nee' while it is 1 => 'Ja'
Am i doing something wrong?