Skip to content

Instantly share code, notes, and snippets.

View mtk3d's full-sized avatar

Mateusz Cholewka mtk3d

View GitHub Profile
@mtk3d
mtk3d / Modal.php
Created February 13, 2022 19:25
Working example of Livewire modal with transition using Alpine.js
<?php
namespace App\Http\Livewire;
use Livewire\Component;
class Modal extends Component
{
public string $content;
public bool $show = false;