23 lines
340 B
PHP
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>
|
||
|
|
|