Skip to content

Instantly share code, notes, and snippets.

@JulianMBr
JulianMBr / PaginatedComponent.php
Created March 2, 2021 23:51
Extending the Livewire component to emit an event when changing the page.
<?php
namespace App\Helpers\Livewire;
use Livewire\Component;
use Livewire\WithPagination;
class PaginatedComponent extends Component
{