16 lines
537 B
PHP
16 lines
537 B
PHP
{{--<!-- <img class="mian-nav-cover" src="{{ $parent->cover_path }}" alt="导航封面"> -->--}}
|
|
<div class="mian-nav-title">
|
|
{{ $parent->title }}
|
|
</div>
|
|
{{--个性化左侧导航 现在只有 高级职称专家在用--}}
|
|
<ul class="mian-nav-ul">
|
|
@if (getCateChild($parent->id)->isNotEmpty())
|
|
@foreach (getCateChild($parent->id) as $children)
|
|
<li class="show">
|
|
<a href="{{ $children->link }}">{{ $children->title }}</a>
|
|
</li>
|
|
@endforeach
|
|
@endif
|
|
|
|
</ul>
|