get component on the card

things are moving slow here because I'm a busy bee it seems these days
:(
This commit is contained in:
IsWaffle 2024-11-20 16:05:35 -05:00
parent 37c7a19a14
commit a7e545d3c1
2 changed files with 5 additions and 2 deletions

View File

@ -8,6 +8,6 @@ class ModerationOptions extends Component
{
public function render()
{
return view('livewire..mod.moderation-options');
return view('livewire.mod.moderation-options');
}
}

View File

@ -6,7 +6,10 @@
@endif
<div class="flex flex-col group h-full w-full bg-white dark:bg-gray-950 rounded-xl shadow-md dark:shadow-gray-950 drop-shadow-2xl overflow-hidden hover:shadow-lg hover:bg-gray-50 dark:hover:bg-black hover:shadow-gray-400 dark:hover:shadow-black transition-colors ease-out duration-700">
<div class="h-auto md:h-full md:flex">
<div class="h-auto md:h-full md:shrink-0 overflow-hidden">
<div class="relative h-auto md:h-full md:shrink-0 overflow-hidden">
<div class="absolute right-0 z-50 text-blue-400 dark:text-blue-500 m-2">
<livewire:mod.moderation-options />
</div>
@if ($mod->thumbnail)
<img src="{{ $mod->thumbnailUrl }}" alt="{{ $mod->name }}" class="h-48 w-full object-cover md:h-full md:w-48 transform group-hover:scale-110 transition-all duration-200">
@else