Hi,
not sure if this is a bug, or if I'm doing anything wrong.
I currently have 2 dashboards in my application:
protected function dashboards()
{
return [
"Home"=> Home\HomeBoard::create()
->default(true)
->icon("fa fa-home"),
"SLC" => SLCMain\SLCMainBoard::create()
->default(false)
->icon("fa fa-list-alt"),
];
}
When the application starts, I want the Homeboard to come up, that's why I set it to default. However, this doesn't work, it's always the second board coming up (no menu button activated). Even if I hide the second board, it's shown by default, just the button in the menu is missing.
I'm not overwriting the default setting anywhere,l therefore I'm not sure what is wrong.
Any help would be very appreciated.
Thanks
Christian