Files
einundzwanzig-portal/resources/views/vendor/comments/components/modal.blade.php
Benjamin Takats 840f79e7fc book cases added
2022-12-07 14:57:15 +01:00

15 lines
361 B
PHP

<div
x-cloak
@class(['comments-modal', 'is-compact' => $compact ?? false, 'is-left' => $left ?? false, 'is-bottom' => $bottom ?? false])
{{ $attributes }}
>
@isset($title)
<p class="comments-modal-title">
{{ $title }}
</p>
@endisset
<div class="comments-modal-contents">
{{ $slot }}
</div>
</div>