From 9df80142f205a6ec71c3186c7080e57f9265817a Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:44:43 -0500 Subject: [PATCH] update --- app/Http/Livewire/ShowLogGeneral.php | 2 ++ app/Http/Livewire/ShowLogHistorial.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/Http/Livewire/ShowLogGeneral.php b/app/Http/Livewire/ShowLogGeneral.php index 1465880..d876c42 100755 --- a/app/Http/Livewire/ShowLogGeneral.php +++ b/app/Http/Livewire/ShowLogGeneral.php @@ -4,9 +4,11 @@ namespace App\Http\Livewire; use App\Models\Log_general; use Livewire\Component; +use Livewire\WithPagination; class ShowLogGeneral extends Component { + use WithPagination; public $entradas; public $buscar; diff --git a/app/Http/Livewire/ShowLogHistorial.php b/app/Http/Livewire/ShowLogHistorial.php index 5c8bd7a..0a87003 100644 --- a/app/Http/Livewire/ShowLogHistorial.php +++ b/app/Http/Livewire/ShowLogHistorial.php @@ -6,9 +6,11 @@ use App\Models\Log_general; use App\Models\Log_historial; use App\Models\User; use Livewire\Component; +use Livewire\WithPagination; class ShowLogHistorial extends Component { + use WithPagination; public $entradas; public $buscar;