7 lines
251 B
PHP
7 lines
251 B
PHP
|
|
@php
|
||
|
|
$currentSchema = $currentSchema ?? null;
|
||
|
|
$activeClass = $schema->name === $currentSchema?->name ? "active" : "";
|
||
|
|
@endphp
|
||
|
|
|
||
|
|
<a class="sidebar-item {{$activeClass}}" aria-current="page"
|
||
|
|
href="/lucent/content/{{$schema->name}}">{{$schema->label}}</a>
|