This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* In your Livewire model for the list of items | |
*/ | |
class ItemList extends Component | |
{ | |
// rest of component |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="{{ $id }}" class="relative flex items-center justify-center fill-current"> | |
<div class="text-gray-200">{{ $slot }}</div> | |
<div class="text-indigo-600 absolute">{{ $slot }}</div> | |
</div> | |
<!-- id used to scope this duration to this element --> | |
<style> | |
.reveal-animation #{{ $id }} { |