16 lines
510 B
PHP
16 lines
510 B
PHP
@props([
|
|
'name' => '' ,
|
|
'headings' => '',
|
|
'color' => config('bladewind.tab.group.color', 'primary'),
|
|
'style' => config('bladewind.tab.group.style', 'simple'),
|
|
])
|
|
@php
|
|
$name = preg_replace('/[\s]/', '-', $name);
|
|
if ($name == '') die('you need to specify the name property of the tab');
|
|
@endphp
|
|
<div class="bw-tab bw-tab-{{ $name }} {{$style}} {{$color}}">
|
|
<ul class="flex flex-wrap -mb-px {{$name}}-headings" data-name="{{$name}}">
|
|
{{ $headings }}
|
|
</ul>
|
|
</div>
|
|
{{$slot}} |