Dr-Panel/resources/views/livewire/expandable-text.blade.php

9 lines
374 B
PHP

<div>
<div class="prose prose-sm max-w-none overflow-hidden transition-all duration-300"
style="{{ $expanded ? '' : 'max-height: 8rem;' }}">
{!! $html !!}
</div>
<button type="button" wire:click="toggle" class="text-primary-600 text-xs font-semibold hover:underline mt-1">
{{ $expanded ? 'کمتر' : 'بیشتر' }}
</button>
</div>