Akaunting/resources/views/components/tabs/tab.blade.php

11 lines
161 B
PHP
Raw Normal View History

2022-06-01 07:15:55 +00:00
@props(['id'])
2022-06-22 13:23:01 +00:00
<div
id="tab-{{ $id }}"
data-tabs-content="{{ $id }}"
x-show="active === '{{ $id }}'"
{{ $attributes }}
>
2022-06-01 07:15:55 +00:00
{{ $slot }}
</div>