Files
tbbank-new/resources/views/vendor/filament/components/tabs/index.blade.php
2025-10-22 20:08:22 +05:00

23 lines
417 B
PHP

@props([
'contained' => false,
'label' => null,
'vertical' => false,
])
<nav
{{
$attributes
->merge([
'aria-label' => $label,
'role' => 'tablist',
])
->class([
'fi-tabs',
'fi-contained' => $contained,
'fi-vertical' => $vertical,
])
}}
>
{{ $slot }}
</nav>