In a multi-level menu, you usually have to highlight the selected menu item and its parent element. This can be done based on the parent route.
<ul>
<li>
<a href="{{ route('admin.posts.index') }}"
class="{{ Str::is('admin.posts.*', Route::currentRouteName()) ? 'is-active' : '' }}">
Manage Posts