->navigationGroups([
NavigationGroup::make()
->label(function () {
return $this->selectedLocationName;
})
->collapsed()
])
->navigationItems([
NavigationItem::make('details')
->label('Details')
->visible($this->selectedLocationId ?? false)
->url(function () {
if ($this->selectedLocationId) {
return LocationResource::getUrl('details', ['record' => $this->selectedLocationId]);
} else {
return false;
}
}),
->navigationGroups([
NavigationGroup::make()
->label(function () {
return $this->selectedLocationName;
})
->collapsed()
])
->navigationItems([
NavigationItem::make('details')
->label('Details')
->visible($this->selectedLocationId ?? false)
->url(function () {
if ($this->selectedLocationId) {
return LocationResource::getUrl('details', ['record' => $this->selectedLocationId]);
} else {
return false;
}
}),