Files
lucent-laravel/front/views/components/tabs.blade.php
T
2024-09-28 18:36:18 +03:00

23 lines
340 B
PHP

@props([
'schema',
'createMode',
])
@php
$groups = ["Main",...$schema->groups];
if(!$createMode){
$groups[] = "Backlinks";
}
@endphp
<ul class="tabs">
@foreach($groups as $tab)
<li class="tab">
<button class="button" aria-current="page">
{{$tab}}
</button>
</li>
@endforeach
</ul>