set up list management
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Edward Tirado Jr 2025-12-13 19:33:52 -06:00
parent 0c42bef077
commit 73d6578857
26 changed files with 495 additions and 230 deletions

View file

@ -1,5 +1,5 @@
@props(['movie'])
<div class="flex flex-col bg-gray-500 w-full h-full">
<img class="object-fill col-span-2" src="{{$movie->poster}}" alt="{{$movie->title}}">
<!-- <span class="text-center p-2">{{$movie->title}}</span> -->
<div class="flex flex-col bg-gray-500 w-full h-full cursor-pointer hover:bg-gray-600 transition-colors"
wire:click="$dispatch('openMovieDetails', { movieId: {{ $movie->id }} })">
<img class="w-full h-full object-cover" src="{{$movie->poster}}" alt="{{$movie->title}}">
</div>